/* 🎨 SIACOFT POS - ESTILOS DE ACCESO */

:root {
    --siacoft-blue-dark: #112764;
    --siacoft-blue-light: #4b6da0;
    --siacoft-gold: #d4af37;
    --white: #ffffff;
    --gray-bg: #f4f7f9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--gray-bg);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contenedor {
    display: flex;
    width: 1000px;
    height: 650px;
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* PANEL IZQUIERDO: MARCA */
.left-panel {
    flex: 1.2;
    background: linear-gradient(135deg, var(--siacoft-blue-light), var(--siacoft-blue-dark));
    color: var(--white);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-principal {
    width: 140px;
    margin-bottom: 30px;
}

.left-panel h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
}

.left-panel h2 {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.8);
}

.descripcion {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.8;
}

.beneficios {
    list-style: none;
}

.beneficios li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.beneficios i {
    color: var(--siacoft-gold);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* PANEL DERECHO: FORMULARIO */
.right-panel {
    flex: 1;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-login {
    width: 100%;
}

.login-header h3 {
    font-size: 2rem;
    color: var(--siacoft-blue-dark);
    margin-bottom: 5px;
}

.login-header p {
    color: #777;
    margin-bottom: 35px;
}

.input-group-custom {
    margin-bottom: 25px;
}

.input-group-custom label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #444;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.icon-field {
    position: absolute;
    left: 15px;
    color: var(--siacoft-blue-light);
    font-size: 1.1rem;
}

.input-wrapper input {
    width: 100%;
    padding: 14px 15px 14px 50px;
    border: 2px solid #e1e8ef;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
}

.input-wrapper input:focus {
    border-color: var(--siacoft-blue-light);
    box-shadow: 0 0 8px rgba(75, 109, 160, 0.1);
}

.icon-toggle {
    position: absolute;
    right: 15px;
    cursor: pointer;
    color: #999;
}

.label-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.link-forgot {
    font-size: 0.75rem;
    color: var(--siacoft-blue-light);
    text-decoration: none;
    font-weight: 600;
}

.btn-primary {
    width: 100%;
    padding: 16px;
    background: var(--siacoft-blue-dark);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #0a1a44;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(17, 39, 100, 0.2);
}

.login-footer {
    text-align: center;
    margin-top: 40px;
    color: #bbb;
}

/* RESPONSIVO */
@media (max-width: 992px) {
    .contenedor {
        width: 90%;
        flex-direction: column;
        height: auto;
    }
    .left-panel {
        padding: 40px;
        text-align: center;
        align-items: center;
    }
    .right-panel {
        padding: 40px;
    }
}