.login-container {
  min-height: 100vh;
  background: #0891B2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.login-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 48px 32px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.logo-container {
  text-align: center;
  margin-bottom: 32px;
  animation: fadeIn 0.8s ease-out 0.2s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.logo-container img {
  transition: transform 200ms ease-in-out;
  margin-bottom: 16px;
}

.login-title {
  color: #4B5563;
  font-size: 14px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 8px;
  line-height: 1.5;
}

.login-brand {
  color: #111827;
  font-size: 20px;
  font-weight: 700;
  display: block;
  margin-top: 0;
}

.login-card .form-floating {
  margin-bottom: 0;
}

.login-card .form-floating > .form-control {
  background: #FFFFFF;
  border: 1px solid #F3F4F6;
  color: #111827;
  border-radius: 12px;
  padding: 1.5rem 16px 0.5rem;
  height: 58px;
  transition: all 200ms ease-in-out;
}
.login-card .form-floating > .form-control:focus {
  background: #FFFFFF;
  border-color: #0891B2;
  box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
  color: #111827;
  outline: none;
}
.login-card .form-floating > .form-control::placeholder {
  color: transparent;
}

.login-card .form-floating > label {
  padding: 1rem 16px;
  color: #9CA3AF;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
  left: 0;
  top: 0;
}
.login-card .form-floating > label i {
  font-size: 1em;
  color: #4B5563;
}

.login-card .form-floating > .form-control:focus ~ label,
.login-card .form-floating > .form-control:not(:placeholder-shown) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  color: #4B5563;
}

.remember-me-container {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.remember-me-container input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  cursor: pointer;
  accent-color: #0891B2;
}
.remember-me-container label {
  color: #4B5563;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  margin: 0;
}

.btn-login {
  width: 100%;
  background: #0891B2;
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  transition: all 200ms ease-in-out;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}
.btn-login:hover {
  background: #067a8e;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
}
.btn-login:active {
  transform: translateY(0);
}

.login-card .alert {
  background: rgb(251.875, 235.625, 235.625);
  border: 1px solid rgb(244.7916666667, 191.7083333333, 191.7083333333);
  color: #DC2626;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
}

.logged-in-message {
  background: rgb(181.828358209, 248.671641791, 226.5223880597);
  border: 1px solid rgb(134.8880597015, 244.6119402985, 208.2537313433);
  color: rgb(7.8805970149, 91.1194029851, 63.5373134328);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.logged-in-message a {
  color: #0891B2;
  text-decoration: none;
  font-weight: 600;
  transition: color 150ms ease-in-out;
}
.logged-in-message a:hover {
  color: #067a8e;
}

@media (max-width: 768px) {
  .login-card {
    padding: 32px 24px;
  }
  .login-brand {
    font-size: 18px;
  }
}

/*# sourceMappingURL=login.css-yGbVtfT.map */
