/* Login Page */

.loginSection {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #fff9f5 0%, #ffffff 100%);
}

.loginContainer {
  width: 100%;
  max-width: 450px;
}

/* Login Card */
.loginCard {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(242, 106, 33, 0.08);
}

.loginHeader {
  text-align: center;
  margin-bottom: 32px;
}

.loginTitle {
  color: var(--text);
  font-weight: 800;
  font-size: 1.5rem;
  margin: 0;
  line-height: 1.3;
}

/* Google Button */
.loginGoogleBtn {
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #1b1b1b;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.loginGoogleBtn:hover {
  border-color: var(--orange);
  background: #fafafa;
  color: #1b1b1b;
}

.loginGoogleBtn i {
  font-size: 1.1rem;
}

/* Divider */
.loginDivider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  color: #b0b0b0;
  font-size: 0.9rem;
}

.loginDivider::before,
.loginDivider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e0e0e0;
}

/* Form Inputs */
.loginInput {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.95rem;
  background: #fafafa;
  transition: all 0.3s ease;
  font-family: "Cairo", sans-serif;
  color: var(--text);
}

.loginInput:focus {
  background: #fff;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(242, 106, 33, 0.1);
  outline: none;
  color: var(--text);
}

.loginInput::placeholder {
  color: #b0b0b0;
}

/* Password Toggle */
.loginPasswordToggle {
  border: 1px solid #e0e0e0;
  background: #fafafa;
  color: #777;
  padding: 0 12px;
  border-radius: 0 8px 8px 0;
  transition: all 0.3s ease;
}

.loginPasswordToggle:hover,
.loginPasswordToggle:focus {
  color: var(--orange);
  border-color: var(--orange);
  background: #fff;
  box-shadow: none;
}

/* Forgot Password Link */
.loginForgotLink {
  color: var(--orange);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.loginForgotLink:hover {
  text-decoration: underline;
}

/* Submit Button */
.loginSubmitBtn {
  padding: 12px 24px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.loginSubmitBtn:hover {
  filter: brightness(0.95);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(242, 106, 33, 0.3);
}

/* Sign Up Link */
.loginSignupLink {
  color: var(--muted);
  font-size: 0.9rem;
}

.loginSignupLink a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  margin-right: 4px;
  transition: all 0.3s ease;
}

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

/* Footer Links */
.loginFooter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.loginFooterLink {
  color: var(--orange);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.loginFooterLink:hover {
  text-decoration: underline;
}

.loginFooterDivider {
  color: #e0e0e0;
}

/* Mobile Responsive */
@media (max-width: 575.98px) {
  .loginCard {
    padding: 30px 20px;
  }

  .loginTitle {
    font-size: 1.3rem;
  }

  .loginInput {
    font-size: 0.9rem;
    padding: 10px 12px;
  }

  .loginGoogleBtn {
    font-size: 0.9rem;
    padding: 11px 14px;
  }

  .loginSubmitBtn {
    padding: 11px 20px;
    font-size: 0.95rem;
  }
}
