.login-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100vh;
    background-image: url('../assets/fondo-login.png');
    background-size: cover;
    background-position: center;
}

.logo-login-pioneros {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 20%;
    height: auto;
}

.logo-login-pioneros-right {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 18%;
    height: auto;
}

.login-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #FFF;
    width: 50%;
}

.login-title {
    font-family: 'Emprint Bold';
    font-size: 3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.form-login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
}

.form-email, .form-password, .form-submit, .form-treatment {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    gap: 5px;
    margin-bottom: 20px;
}

.form-email label, .form-password label {
    font-size: 1.2rem;
    color: #fff;
    text-transform: capitalize;
}

.form-treatment a {
    font-family: 'Emprint Regular', Arial, sans-serif;
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
}

.form-submit {
    align-items: center;
}

.form-email input, .form-password input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    font-size: 1rem;
}

.form-submit button {
    padding: 10px;
    width: 40%;
    border: none;
    border-radius: 25px;
    background: linear-gradient(120deg, #e0e0e0 0%, #b0b0b0 40%, #ffffff 50%, #b0b0b0 60%, #e0e0e0 100%);
    color: #003E71;
    font-size: 1.5rem;
    font-family: 'Emprint Bold', Arial, sans-serif;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2), 0 1px 0 #fff inset;
    border: 2px solid #c0c0c0;
    text-shadow: 0 1px 2px #fff, 0 -1px 1px #888;
}

.form-submit button:hover {
    background: linear-gradient(120deg, #f5f5f5 0%, #cccccc 40%, #ffffff 50%, #cccccc 60%, #f5f5f5 100%);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25), 0 1px 0 #fff inset;
}

/* Media Queries para Mobile */
@media screen and (max-width: 768px) {
    .login-container {
        padding: 20px;
    }

    .logo-login-pioneros-right {
        width: 28%;
        top: 10px;
        right: 10px;
    }

    .login-form {
        width: 80%;
    }

    .login-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .form-login-container {
        width: 80%;
    }

    .form-email label, .form-password label {
        font-size: 1.1rem;
    }

    .form-email input, .form-password input {
        padding: 12px;
        font-size: 1rem;
    }

    .form-submit button {
        width: 60%;
        font-size: 1.3rem;
        padding: 12px;
    }

    .form-treatment a {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .login-container {
        padding: 15px;
    }

    .logo-login-pioneros {
        width: 50%;
        top: 5px;
        left: 5px;
    }

    .logo-login-pioneros-right {
        width: 40%;
        top: 5px;
        right: 5px;
    }

    .login-form {
        width: 95%;
    }

    .login-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
        text-align: center;
    }

    .form-login-container {
        width: 95%;
    }

    .form-email, .form-password, .form-submit, .form-treatment {
        margin-bottom: 15px;
    }

    .form-email label, .form-password label {
        font-size: 1rem;
    }

    .form-email input, .form-password input {
        padding: 10px;
        font-size: 0.9rem;
    }

    .form-submit button {
        width: 80%;
        font-size: 1.2rem;
        padding: 10px;
    }

    .form-treatment a {
        font-size: 0.85rem;
        text-align: center;
    }
}
