body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #333;
  font-weight: 600;
}

input {
  width: 100%;
  padding: 10px 14px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  background-color: #fff;
}

.container {
  width: 100%;
  max-width: 420px;
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.input-group {
  margin-bottom: 20px;
}

.continue-btn {
  width: 100%;
  padding: 12px;
  background-color: #007bff;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.continue-btn:hover {
  background-color: #0069d9;
}

.continue-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.back-link {
  display: block;
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
  color: #007bff;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}


#forgot_password {
  display: block;
  text-align: right;
  font-size: 13px;
  margin: 10px 0;
  color: #007bff;
  text-decoration: none;
}

#forgot_password:hover {
  text-decoration: underline;
}

#signup_link {
  text-align: center;
  font-size: 13px;
  margin-top: 12px;
  color: #555;
}

#signup_link a {
  color: #007bff;
  text-decoration: none;
}

#signup_link a:hover {
  text-decoration: underline;
}

.divider {
  text-align: center;
  margin: 20px 0;
  color: #888;
  font-size: 13px;
  position: relative;
}

.divider::before, .divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background-color: #ccc;
}

.divider::before {
  left: 0;
}

.divider::after {
  right: 0;
}

.social-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.social-button img {
  width: 20px;
  margin-right: 10px;
}

.social-button:hover {
  background-color: #f1f1f1;
}