@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;500;700&family=Inter:wght@400;500;600;700&display=swap');

/* ==========================================
   PANEL DERECHO
========================================== */

.right-panel {
    background: linear-gradient(145deg, #2B1F3A 0%, #4B2D69 45%, #6E08B3 100%);
    overflow: hidden;
    position: relative;
}

.right-panel::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
}

.right-panel::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
}

.icon-box {
    width: 52px;
    height: 52px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

/* ==========================================
   DIVIDER
========================================== */

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #6B6660;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin: 1.5rem 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #D9D4CE;
}

.divider::before {
    margin-right: .5em;
}

.divider::after {
    margin-left: .5em;
}

/* ==========================================
   INPUTS Y FORMULARIO
========================================== */

.form-control {
    border-color: #D9D4CE;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
}

.form-control:focus {
    border-color: #820AD1;
    box-shadow: 0 0 0 4px rgba(130, 10, 209, 0.12);
    background: #ffffff;
}

/* Eliminar fondo azul del autofill del navegador */
.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
    box-shadow: 0 0 0px 1000px #ffffff inset !important;
    -webkit-text-fill-color: #0D0D0F !important;
    border-color: #D9D4CE !important;
}

.input-group-text {
    border-color: #D9D4CE;
    background: #ffffff;
    color: #6B6660;
}

/* ==========================================
   BOTÓN LOGIN
========================================== */

.btn-login {
    background-color: #820AD1;
    color: #ffffff;
    border: none;
    border-radius: 14px;
    height: 52px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-login:hover {
    background-color: #6A08AC;
    color: #ffffff;
}

/* ==========================================
   BOTÓN GOOGLE
========================================== */

.btn-google {
    border: 1px solid #D9D4CE;
    border-radius: 10px;
    background: #ffffff;
    color: #0D0D0F;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    width: 100%;
    padding: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.btn-google:hover {
    background-color: #FAF6F1;
    border-color: #820AD1;
    color: #0D0D0F;
}

/* ==========================================
   CHECKBOX
========================================== */

.form-check-input:checked {
    background-color: #820AD1;
    border-color: #820AD1;
}

.form-check-input:focus {
    border-color: #820AD1;
    box-shadow: 0 0 0 0.2rem rgba(130, 10, 209, 0.25);
}