@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap");

body.login-page {
  margin: 0;
  padding: 0;
  font-family: "Outfit", sans-serif;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  background: white;
}

.login-card-container {
  display: flex;
  width: 100%;
  height: 100%;
  background: white;
}

/* LEFT SIDE - FORM */
.login-left {
  flex: 0 0 500px; /* Fixed width for form */
  width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px;
  background: white;
  z-index: 10;
  position: relative;
}

.login-logo {
  margin-bottom: 40px;
}

.login-logo img {
  height: 60px;
  width: auto;
}

.login-header h3 {
  color: #1a1a1a;
  font-weight: 600;
  margin: 0 0 10px;
  font-size: 32px;
}

.login-header p {
  color: #666;
  font-size: 16px;
  margin-bottom: 40px;
}

.form-group {
  margin-bottom: 24px;
  position: relative;
}

.form-control {
  height: 50px;
  padding: 10px 15px 10px 45px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #f8f9fb;
}

.form-control:focus {
  background: white;
  border-color: #2a5298;
  box-shadow: 0 0 0 4px rgba(42, 82, 152, 0.1);
}

.form-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 18px;
}

.btn-login {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  border: none;
  height: 50px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  width: 100%;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 10px 20px rgba(30, 60, 114, 0.2);
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(30, 60, 114, 0.3);
}

.footer-links {
  margin-top: 40px;
  font-size: 13px;
  color: #888;
}

.footer-links a {
  color: #2a5298;
  text-decoration: none;
  font-weight: 600;
}

/* RIGHT SIDE - IMAGE & WAVE */
.login-right {
  flex: 1;
  position: relative;
  background: url('../img/23.jpg') no-repeat center center;
  background-size: cover;
  background-color: white; /* Fallback/Blend */
}

/* Remove Overlay - Image is pre-styled */
.login-right::before {
  display: none;
}

/* Wave Separator - Removed as it is baked into the image */
.wave-container {
  display: none;
}

/* Alerts */
.alert {
  padding: 15px;
  margin-bottom: 25px;
  border-radius: 12px;
  font-size: 14px;
}
.alert-danger {
  background-color: #ffe6e6;
  color: #d63031;
  border: 1px solid #fab1a0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .login-left {
    flex: 0 0 100%;
    width: 100%;
    padding: 40px 30px;
  }
  
  .login-right {
    display: none;
  }
}
