/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* FONDO GENERAL */
body {
    height: 100vh;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #73FF0B, #2a5298);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CONTENEDOR PRINCIPAL */
.login-container {
    background-color: #ffffff;
    width: 360px;
    padding: 30px 32px;
    border-radius: 14px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
}

/* HEADER */
.login-header {
    margin-bottom: 20px;
}

.login-header img {
    width: 300px;
    margin-bottom: 10px;
}

.login-header h2 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
}

/* FORMULARIO */
.login-form {
    margin-top: 10px;
}

.login-form input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
    transition: 0.3s;
}

.login-form input:focus {
    outline: none;
    border-color: #2a5298;
    box-shadow: 0 0 5px rgba(42, 82, 152, 0.3);
}

/* BOTÓN */
.login-form button {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    background-color: #2a5298;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.login-form button:hover {
    background-color: #73FF0B;
    color: #000;
}

/* DIVISOR */
.divider {
    margin: 22px 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #ccc, transparent);
}

/* OPCIONES */
.login-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* LINKS PRINCIPALES */
.login-options .link {
    font-size: 14px;
    color: #2a5298;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.login-options .link:hover {
    text-decoration: underline;
}

/* LINK VOLVER */
.back-link {
    font-size: 13px;
    color: #555;
    text-decoration: none;
    transition: 0.3s;
}

.back-link:hover {
    color: #000;
}
