/* Auth Container */
.auth-container {
  max-width: 500px;
  margin: 50px auto;
  background-color: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.auth-container h2 {
  text-align: center;
  margin-bottom: 2rem;
}

/* Form Elements */
.remember-forgot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.remember-me {
  display: flex;
  align-items: center;
}

.remember-me input {
  margin-right: 8px;
}

.forgot-password {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.9rem;
}

.forgot-password:hover {
  text-decoration: underline;
}

/* Password Strength */
.password-strength {
  height: 5px;
  background-color: var(--light-gray);
  margin-top: 5px;
  border-radius: 5px;
  overflow: hidden;
}

.strength-bar {
  height: 100%;
  width: 0%;
  background-color: var(--warning);
  transition: width 0.3s, background-color 0.3s;
}

/* Terms Checkbox */
.terms {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.terms input {
  margin-right: 10px;
  margin-top: 3px;
}

.terms label {
  color: var(--gray);
  font-size: 0.9rem;
}

.terms a {
  color: var(--primary);
  text-decoration: none;
}

.terms a:hover {
  text-decoration: underline;
}

/* Auth Footer Links */
.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--gray);
  font-size: 0.9rem;
}

.auth-footer a {
  color: var(--primary);
  text-decoration: none;
}

.auth-footer a:hover {
  text-decoration: underline;
}

/* Social Login */
.social-login {
  margin-top: 2rem;
  text-align: center;
}

.social-login p {
  color: var(--gray);
  margin-bottom: 1rem;
  position: relative;
}

.social-login p:before,
.social-login p:after {
  content: "";
  display: inline-block;
  width: 30%;
  height: 1px;
  background-color: var(--light-gray);
  position: absolute;
  top: 50%;
}

.social-login p:before {
  left: 0;
}

.social-login p:after {
  right: 0;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light);
  color: var(--gray);
  text-decoration: none;
  transition: background-color 0.3s;
}

.social-btn:hover {
  background-color: var(--light-gray);
}