/* Reset básico */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}


/* Estilos para el body */

body,
html {
    height: 100%;
    width: 100%;
    overflow: hidden;
}


/* Contenedor principal */

.full-container {
    display: flex;
    width: 100%;
    height: 100%;
}


/* Sección izquierda (65%) */

.left-section {
    width: 65%;
    background-image: url('./img/body.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* Sección derecha (35%) */

.right-section {
    width: 35%;
    padding: 0;
    background-color: white;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}


/* Imagen superior */

.top-image {
    width: 100%;
}

.top-image img {
    width: 100%;
    height: auto;
    display: block;
}


/* Formulario */

.login-form {
    margin: 30px 40px;
}

.login-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.form-group input {
    width: 100%;
    padding: 17px;
    background-color: #f5f5f5;
    border: 0px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}


/* Botón con color #e35728 */

.login-button {
    width: 100%;
    padding: 20px;
    background-color: #e35728;
    /* Color naranja solicitado */
    color: white;
    border: none;
    border-radius: 100px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-button:hover {
    background-color: #c04b21;
    /* Color más oscuro para hover */
}


/* Imagen inferior */

.bottom-image {
    padding: 0 40px 40px;
    text-align: center;
    margin-top: auto;
}

.bottom-image img {
    max-width: 100%;
    height: auto;
    max-height: 100px;
}


/* Versión móvil - Solo div derecho */

@media (max-width: 768px) {
    .left-section {
        display: none;
    }
    .right-section {
        width: 100%;
        height: 100%;
        padding: 0;
    }
    /* Imagen superior al 100% ancho */
    .top-image {
        width: 100%;
        height: auto;
    }
    .top-image img {
        width: 100%;
        height: auto;
        max-height: 40vh;
        object-fit: contain;
    }
    /* Ajustes formulario */
    .login-form {
        margin: 30px 20px;
        flex-grow: 1;
    }
    .bottom-image {
        padding: 20px;
    }
}