
body {
    margin: 0;
    padding: 0;
    background: linear-gradient(160deg, #1f4e78, #2e6da4);
    font-family: "Segoe UI", Roboto, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
}

.login-container {
    background-color: white;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 420px;
    text-align: center;
}

.login-title {
    color: #2e6da4;
    font-size: 1.8em;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-login {
    width: 100%;
    padding: 10px;
    font-size: 1em;
}

.btn-login {
    width: 100%;
    background-color: #1f4e78 !important;
    border: none !important;
    color: white !important;
    font-weight: bold;
    font-size: 1em;
    padding: 12px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.btn-login:hover {
    background-color: #4178b8 !important;
}

.recuperar-link {
    display: block;
    margin-top: 15px;
    color: #666;
    font-size: 0.9em;
    text-decoration: none;
}

.recuperar-link:hover {
    color: #2e6da4;
    text-decoration: underline;
}

.login-footer {
    margin-top: 30px;
    color: white;
    font-size: 0.8em;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: space-between;
    padding: 10px 30px;
}
.login-logo {
    max-width: 120px;
    margin-bottom: 20px;
}
.footer-left,
.footer-right {
    padding: 5px 10px;
}

@media (max-width: 768px) {
    .login-footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        margin-top: 10px;
    }
}
