/* Auth Container */
.sir-auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: linear-gradient(135deg, #1a365d 0%, #2a4a7f 100%);
}

.sir-auth-card {
    background: #fff;
    border-radius: 16px;
    padding: 48px 40px;
    max-width: 460px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.sir-auth-logo {
    text-align: center;
    margin-bottom: 24px;
}

.sir-auth-logo img {
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.sir-auth-logo .sir-auth-license {
    margin-top: 6px;
    margin-bottom: 0;
    font-size: 11px;
    color: #9ca3af;
    letter-spacing: 0.5px;
    text-align: center;
}

.sir-auth-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 8px;
}

.sir-auth-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 15px;
    margin-bottom: 28px;
    line-height: 1.5;
}

/* Insurance Options */
.sir-insurance-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.sir-insurance-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 16px;
    font-weight: 600;
    color: #1a365d;
}

.sir-insurance-option:hover,
.sir-insurance-option-active {
    border-color: #1a365d;
    background: #f0f4f8;
}

.sir-insurance-option-icon {
    font-size: 28px;
}

/* Tabs */
.sir-auth-tabs {
    display: flex;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 28px;
}

.sir-auth-tab {
    flex: 1;
    padding: 12px;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: #9ca3af;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s ease;
}

.sir-auth-tab-active {
    color: #1a365d;
    border-bottom-color: #1a365d;
}

/* Auth Form */
.sir-auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sir-auth-form .sir-btn-primary {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 16px;
    margin-top: 8px;
}

.sir-auth-error {
    color: #dc2626;
    font-size: 14px;
    text-align: center;
    min-height: 20px;
}

.sir-auth-resend {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    margin-top: 20px;
}

.sir-auth-resend a {
    color: #1a365d;
    font-weight: 600;
    text-decoration: none;
}

.sir-auth-resend a:hover {
    text-decoration: underline;
}

/* Code Input */
.sir-code-inputs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 16px 0;
}

.sir-code-digit {
    width: 52px;
    height: 60px;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    border: 2px solid #d1d5db;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.2s ease;
    color: #1a365d;
}

.sir-code-digit:focus {
    border-color: #1a365d;
    box-shadow: 0 0 0 3px rgba(26,54,93,0.15);
}

@media (max-width: 480px) {
    .sir-auth-card {
        padding: 32px 24px;
    }

    .sir-code-digit {
        width: 44px;
        height: 52px;
        font-size: 24px;
    }

    .sir-code-inputs {
        gap: 6px;
    }
}

/* Desktop auth card - wider */
@media (min-width: 768px) {
    .sir-auth-card {
        max-width: 520px;
    }

    .sir-auth-container {
        padding: 40px;
    }
}

/* (legacy license styling removed — license is now inside .sir-auth-logo) */
