body {
    margin: 0;
    height: 100vh;
    background: linear-gradient(180deg, #0b2a4a, #1e3c72);
    font-family: Arial, sans-serif;
}

.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.login-box {
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    width: 380px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.logo {
    width: 120px;
}

.titulo {
    color: #0b2a4a;
    font-weight: bold;
    margin-bottom: 20px;
}

label {
    font-size: 14px;
    color: #333;
}

input {
    border-radius: 5px !important;
    border: 1px solid #ccc !important;
}

input:focus {
    border-color: #0b2a4a !important;
    box-shadow: none !important;
}

.link-recuperar {
    font-size: 13px;
    color: #1e3c72;
    text-decoration: none;
}

.link-recuperar:hover {
    text-decoration: underline;
}

.btn-login {
    background: #0b2a4a;
    color: #fff;
    font-weight: bold;
    padding: 10px;
    border: none;
}

.btn-login:hover {
    background: #163d6b;
}

.logo {
    width: 250px;
    max-width: 100%;
}