/* Layout split-screen */
.cgt-login-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Panel izquierdo */
.cgt-panel-left {
    width: 38%;
    background-color: var(--cgt-primario);
    padding: 3rem 2rem;
    text-align: center;
}

.cgt-brand-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.cgt-brand-sub {
    color: var(--cgt-secundario);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cgt-divider {
    border-color: var(--cgt-secundario);
    opacity: 0.3;
    width: 60%;
    margin: 0 auto 1.5rem;
}

.cgt-brand-footer {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Panel derecho */
.cgt-panel-right {
    width: 62%;
    background-color: #ffffff;
    padding: 3rem;
    border-left: 1px solid #e0e0e0;
}

.cgt-form-inner {
    max-width: 400px;
    margin: 0 auto;
}

.cgt-form-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--cgt-primario);
    margin-bottom: 0.4rem;
}

.cgt-form-subtitle {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.cgt-form-divider {
    border-color: #ebebeb;
    margin-bottom: 1.8rem;
}

/* Campos */
.cgt-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 0.4rem;
    display: block;
}

.cgt-input-icon {
    background-color: #f8f8f8;
    border-color: #dedede;
    color: #888;
}

.cgt-input {
    border-color: #dedede;
    background-color: #fafafa;
    font-size: 0.95rem;
}

.cgt-input:focus {
    border-color: var(--cgt-primario);
    box-shadow: 0 0 0 0.2rem rgba(45, 58, 130, 0.12);
    background-color: #ffffff;
}

.cgt-input:focus + .input-group-text,
.input-group:focus-within .cgt-input-icon {
    border-color: var(--cgt-primario);
    color: var(--cgt-primario);
}

.cgt-eye-btn {
    cursor: pointer;
    border-left: none;
}

/* Link */
.cgt-forgot {
    font-size: 0.85rem;
    color: var(--cgt-primario);
    text-decoration: none;
}

.cgt-forgot:hover {
    text-decoration: underline;
}

/* Botón */
.cgt-btn-login {
    background-color: var(--cgt-primario);
    color: var(--cgt-fondo);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem;
    border-radius: 8px;
    border: none;
    transition: background-color 0.2s;
}

.cgt-btn-login:hover {
    background-color: #222d6a;
    color: var(--cgt-fondo);
}

.cgt-btn-login:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Footer */
.cgt-footer-note {
    text-align: center;
    font-size: 0.78rem;
    color: #aaa;
    margin-top: 2rem;
    margin-bottom: 0;
}
