﻿/* Reset general */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.fondo-pagina {
    background-image: url("../img/fondoblur.png");
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contenedor-login {
    display: flex;
    width: 800px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.login-izquierda {
    flex: 1;
    background-image: url("../img/izquierda.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: white;
    position: relative;
}

/* Contenido de la parte izquierda */
.contenido-izquierda {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

    .contenido-izquierda h2 {
        font-size: 28px;
        font-weight: bold;
        line-height: 1.2;
        margin-bottom: 20px;
    }

.btn-matricula {
    display: inline-block;
    background-color: white;
    color: black;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

    .btn-matricula:hover {
        background-color: black;
        color: white;
        box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    }

.logo-img {
    width: 50px;
    height: auto;
    margin-bottom: 15px;
    display: block;
}

.login-derecha {
    flex: 1;
    background-color: #3b5eff; /* Azul intenso */
    color: white;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .login-derecha h2 {
        font-size: 22px;
        margin-bottom: 25px;
        text-align: center;
    }

.formulario-login {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.campo-texto {
    padding: 10px 15px;
    border: none;
    border-radius: 25px;
    outline: none;
    font-size: 14px;
    width: 100%;
}

/* Contraseña con icono */
.campo-password {
    position: relative;
}

.icono-ver {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-image: url("../img/ojo.png");
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
}

.btn-ingresar {
    background-color: #1428d4;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 10px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

    .btn-ingresar:hover {
        background-color: #0f1ea9;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

.texto-soporte {
    font-size: 12px;
    text-align: center;
    margin-top: 10px;
}

    .texto-soporte a {
        color: #d1e0ff;
        text-decoration: underline;
    }

.pie-pagina {
    margin-top: 40px;
    color: white;
    font-size: 13px;
    text-align: center;
}
