/* ==========================================================================
   Auth pages - Centered glass card, OTP cells
   ========================================================================== */

/* --- OTP Input Cells --- */
.otp-inputs {
    direction: ltr;
}

.otp-cell {
    width: 52px;
    height: 58px;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    border: 2px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.otp-cell:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 217, 0.25);
    background: rgba(255, 255, 255, 0.95);
}

/* --- Phone Selection --- */
.phone-option {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.phone-option .form-check-input {
    float: none;
    margin: 0;
    flex-shrink: 0;
}

.phone-option .form-check-label {
    position: static;
}

.phone-option .form-check-label::before {
    content: "";
    position: absolute;
    inset: 0;
    cursor: pointer;
}

.phone-option:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--primary);
}

.phone-option .form-check-input:checked ~ .form-check-label {
    color: var(--primary);
    font-weight: 500;
}

.phone-number {
    font-size: 1.1rem;
    direction: ltr;
    display: inline-block;
}

.phone-type {
    font-size: 0.85rem;
    display: block;
}

/* --- Warning/Success Icons --- */
.warning-icon,
.success-icon {
    margin-bottom: 0.5rem;
}
