body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(to right, #f6d365, #fda085);
}

.login-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

/* Nuevo estilo para el header de logos */
.logos-header {
    width: 100%;
    max-width: 900px;
    margin-bottom: 10px;
    border-bottom: 5px solid #cf3f3f;
}

.logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container img {
    height: 100%;
    object-fit: contain;
    max-width: 30%;
}


.login-header {
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.login-header h1 {
    color: #333;
    font-size: 2rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.login-header .cct {
    color: #666;
    font-size: 1.2rem;
    margin: 10px 0 0;
    font-weight: 500;
}

.login-container {
    width: 90%;
    max-width: 900px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.login-box {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 500px;
}

.login-left {
    width: 45%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 193, 7, 0.1);
}

h2 {
    color: #333;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.8rem;
}

form {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.input-wrapper {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 15px auto;
}

.input-wrapper input {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.password-wrapper .toggle-password {
    position: absolute;
    right: 10px;
    top: 35%;
    transform: translateY(-50%);
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-wrapper .toggle-password img {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.password-wrapper .toggle-password img:hover {
    opacity: 1;
}

button {
    width: 100%;
    max-width: 320px;
    padding: 15px;
    border: none;
    background: #f6ae1c;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
    margin-top: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

button:hover {
    background: #e69a00;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.login-right {
    width: 55%;
    display: flex;
    position: relative;
}

.login-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Media Queries */
@media (max-width: 768px) {
    .logo-container {
        flex-direction: row;
        padding: 15px;
    }
    
    .logo-container img {
        height: 100px;
        max-width: 100%;
        margin: 5px 0;
    }
    
    .login-header h1 {
        font-size: 1.5rem;
    }
    
    .login-header .cct {
        font-size: 1rem;
    }
    
    .login-box {
        flex-direction: column;
        height: auto;
    }
    
    .login-left, .login-right {
        width: 100%;
    }
    
    .login-left {
        padding: 40px 30px;
        order: 2;
    }
    
    .login-right {
        order: 1;
        height: 250px;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logos-header {
        margin-bottom: 5px;
    }
    
    .logo-container img {
        height: 50px;
    }
    
    .login-header {
        padding: 15px;
    }
    
    .login-header h1 {
        font-size: 1.2rem;
    }
    
    .login-header .cct {
        font-size: 0.9rem;
    }
    
    .login-left {
        padding: 30px 20px;
    }
    
    .login-right {
        height: 200px;
    }
    
    .input-wrapper, button {
        max-width: 100%;
    }

    button {
        width: 50%;
        max-width: 320px;
        padding: 15px;
        border: none;
        background: #f6ae1c;
        color: white;
        font-size: 18px;
        font-weight: 600;
        cursor: pointer;
        border-radius: 8px;
        transition: all 0.3s;
        margin-top: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .input-wrapper input {
        width: 80%;
        padding: 15px;
        margin-bottom: 20px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 16px;
    }
    
    .password-wrapper .toggle-password {
        position: absolute;
        top: 35%;
        left: 80%;
        transform: translateY(-50%);
        cursor: pointer;
        padding: 5px;
        display: flex;
        align-items: left;
        justify-content: left;
    }
}


