/* Fonte base */
body, input, button {
    font-family: 'Inter', sans-serif;
}

.login-body {
    background: linear-gradient(135deg, #007bff 0%, #2c3e50 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

hr {
    color: white
}
/* Card central com Glass Effect */
.login-card {
    width: 380px;
    padding: 40px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    animation: fadeIn 0.6s ease;
}

/* Switch moderno */
.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0;
    right: 0; bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.slider:before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #007bff;
}

input:checked + .slider:before {
    transform: translateX(22px);
}

/* Campo moderno */
.form-control {
    border-radius: 12px !important;
    padding: 12px 16px !important;
}

/* Botão */
.btn-primary {
    border-radius: 12px;
    padding: 12px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Link */
.forgot-password {
    text-decoration: none;
    font-size: 14px;
    color: #fff;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Animação suave */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
