/* ==========================================
   EduMate Pro - Login Page CSS (Flat, No Shadows)
   ========================================== */

body.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
  background-color: #FFFFFF;
}

.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.55);
  z-index: -1;
}

.auth-card {
  animation: fadeIn 0.35s ease-out;
  width: 100%;
  max-width: 850px;
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  position: relative;
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-left-brand {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 45%;
  padding: 2.5rem;
  background-color: #F8FAFC;
  border-right: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .login-left-brand {
    display: flex;
  }
}

.login-right-form {
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #FFFFFF;
  position: relative;
}

@media (min-width: 768px) {
  .login-right-form {
    width: 55%;
    padding: 3rem;
  }
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #fff inset !important;
  -webkit-text-fill-color: #111827 !important;
}
