body {
    background-image: linear-gradient(15deg, #052f48 0%, #80d0c7 100%);
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    width: 100%;
    max-width: 100vw;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: white;
    width: 100%;
    max-width: 388px;
}

/* Input focus */
.form-control:focus {
    box-shadow: none;
    border-color: #4e73df;
}

/* Botón primario */
.btn-primary {
    background-color: #000;
    border-color: #000;
}
.btn-primary:hover {
    background-color: #014c77;
    border-color: #014c77;
}

.login-logo {
    width: 80px;
    height: auto;
    margin-bottom: 1rem;
}
