/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  background-color: #fafafa;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Container */
.container {
  width: 100%;
  max-width: 350px;
  padding: 20px;
}

/* Form Box */
.form-box {
  background: #fff;
  border: 1px solid #dbdbdb;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
}

/* Logo */
.logo {
  font-family: 'Billabong', cursive;
  font-size: 48px;
  margin-bottom: 25px;
}

/* Info Text (for register) */
.info-text {
  font-size: 14px;
  color: #8e8e8e;
  margin-bottom: 20px;
}

/* Input Fields */
form input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 12px;
  background: #fafafa;
  border: 1px solid #dbdbdb;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: border 0.2s ease;
}

form input:focus {
  border-color: #a0a0a0;
  background-color: #fff;
}

/* Button */
form button {
  width: 100%;
  padding: 12px;
  background-color: #0095f6;
  border: none;
  color: white;
  border-radius: 6px;
  font-weight: 600;
  margin-top: 10px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #007edb;
}

/* Divider */
.divider {
  margin: 20px 0;
  text-align: center;
  position: relative;
  font-size: 14px;
  color: #8e8e8e;
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  width: 40%;
  background: #dbdbdb;
  position: absolute;
  top: 50%;
}

.divider::before {
  left: 0;
}

.divider::after {
  right: 0;
}

/* Signup/Login Links */
.signup-link {
  font-size: 14px;
  margin-top: 10px;
}

.signup-link a {
  color: #0095f6;
  text-decoration: none;
}

.signup-link a:hover {
  text-decoration: underline;
}
