/* css/login.css */

/* Centraliza verticalmente e dá um fundo suave */
.login-wrapper {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* O Card Principal */
.card-login {
  max-width: 420px;
  width: 100%;
  border: none;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  transition: transform 0.3s ease;
}

/* Efeito sutil ao passar o mouse */
.card-login:hover {
  transform: translateY(-5px);
}

/* Ícone de Destaque */
.login-icon-box {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
  background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
  color: white;
  box-shadow: 0 0.5rem 1rem rgba(13, 110, 253, 0.3);
}

/* Inputs Modernos */
.form-control-lg {
  font-size: 1rem;
  padding: 0.8rem 1rem;
}

/* Links */
.link-hover:hover {
  text-decoration: underline !important;
  color: #0a58ca !important;
}

/* Animação de Entrada */
.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
