.login-page {
  background-image: url("/assets/login_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100vh;
  -ms-flex-pack: center;
  justify-content: center;
}

.login-box {
  width: 450px;
  max-width: 90%;
}

.card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  overflow: hidden;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-logo {
  background: rgba(255, 255, 255, 0.15);
  padding: 20px;
  text-align: center;
}

.login-logo img {
  max-width: 220px;
}

.card-body {
  padding: 35px 40px;
}

.form-control {
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 14px;
  font-size: 15px;
  margin-bottom: 20px;
  transition: 0.3s;
}

 .form-control:focus {
  border-color: #3490dc;
  box-shadow: 0 0 10px rgba(40, 167, 69, 0.3);
} 

.btn-primary {
  background: #3490dc;
  border: none;
  border-radius: 10px;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  color: #000;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #3490dc;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.form-check-label {
  font-size: 14px;
  color: #f8f9fa;
}

.form-check-input {
  accent-color: #3490dc;
}