.phone-auth-section {
    min-height: calc(100vh - 220px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.phone-auth-card {
    width: 100%;
    max-width: 460px;
    background: #fff;
    border: 1px solid rgba(0, 108, 53, 0.16);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.phone-auth-card h1 {
    font-size: 24px;
    color: #0f5132;
    margin-bottom: 6px;
}

.phone-auth-card p {
    color: #4b5563;
    margin-bottom: 20px;
}

.auth-owner-hint {
    margin-bottom: 16px;
    padding: 10px 12px;
    border: 1px solid rgba(15, 124, 63, 0.2);
    border-right: 4px solid #0f7c3f;
    border-radius: 10px;
    background: rgba(15, 124, 63, 0.06);
    color: #14532d;
    font-size: 14px;
    line-height: 1.7;
}

.auth-owner-hint a {
    color: #0f7c3f;
    font-weight: 700;
    text-decoration: underline;
}

.auth-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.auth-step {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 10px 12px;
    background: #f9fafb;
}

.auth-step .step-number {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    background: #e5e7eb;
    color: #374151;
}

.auth-step .step-label {
    font-weight: 700;
    color: #374151;
}

.auth-step.is-active {
    border-color: rgba(15, 124, 63, 0.35);
    background: rgba(15, 124, 63, 0.08);
}

.auth-step.is-active .step-number {
    background: #0f7c3f;
    color: #fff;
}

.auth-step.is-done .step-number {
    background: #198754;
    color: #fff;
}

.auth-step.is-locked {
    opacity: 0.75;
}

.step-panel {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px;
    background: #fff;
}

.step-panel + .step-panel {
    margin-top: 12px;
}

.step-panel h2 {
    font-size: 16px;
    color: #1f2937;
    margin-bottom: 10px;
}

.step-panel.is-dimmed {
    opacity: 0.82;
}

.phone-auth-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phone-auth-form label {
    font-weight: 700;
    color: #1f2937;
}

.phone-auth-form input {
    height: 44px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 0 12px;
    font-family: 'Cairo', sans-serif;
}

.phone-auth-form input:focus {
    outline: none;
    border-color: #0f7c3f;
    box-shadow: 0 0 0 3px rgba(15, 124, 63, 0.14);
}

.verify-form {
    border-top: 1px dashed #d1d5db;
}

.verify-form.is-disabled {
    opacity: 0.6;
}

.step-hint {
    margin-bottom: 8px;
    font-size: 14px;
}

.field-error {
    color: #b91c1c;
    font-size: 13px;
}

.js-auth-submit-btn.is-loading {
    opacity: 0.8;
    cursor: wait;
}
