html, body {
    height: 100%;
    margin: 0;
    font-family: "Open Sans", sans-serif;
    background-color: #000; /* fondo negro */
}

/* Contenedor principal en 2 columnas */
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    padding: 0 50px;
}

/* Columna izquierda: formulario */
.left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login {
    display: flex;
    flex-direction: column; /* apila elementos */
    justify-content: center; /* centra verticalmente */
    align-items: center; /* centra horizontalmente */
    gap: 20px; /* separación uniforme entre elementos */

    width: 450px;
    min-height: 500px;
    padding: 30px;
    border-radius: 8px;
    border: 2px solid #2196F3;
    background-color: #000;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.5);
    color: #fff;
}

    .login .title {
        font-size: 28px; /* tamaño de la fuente */
        font-family: 'Cherry Swash', sans-serif; /* tipo de fuente */
        font-weight: bold; /* opcional, hace el texto más grueso */
        color: #fff; /* color del texto */
        text-align: center; /* opcional, centra el texto */
    }


    .login input {
        display: block;
        width: 100%;
        padding: 12px;
        margin: 10px 0;
        border: 1px solid #555;
        border-radius: 4px;
        background: #111;
        color: #fff;
    }

    .login button {
        width: 100%;
        padding: 15px;
        margin-top: 10px;
        border: none;
        border-radius: 4px;
        background: #2196F3;
        color: #fff;
        font-size: 18px;
        cursor: pointer;
    }

        .login button:hover {
            background: #1976d2;
        }

/* Columna derecha: imagen */
.right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .right img {
        height: 80vh; /* la imagen ocupa el 80% del alto de la pantalla */
        width: auto; /* mantiene proporción */
        border-radius: 10px;
    }