.phone-input-wrapper {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
    direction: ltr !important;
}

.phone-country-select {
    width: 110px;
    padding: 16px 12px;
    border: 1px solid #000;
    border-radius: 12px;
    font-size: 16px;
    background: var(--surface);
    color: var(--dark);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: var(--app-font-family);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    flex-shrink: 0;
}

.phone-country-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0,149,246,.15), 0 4px 12px rgba(0,0,0,0.08);
    outline: none;
}

.phone-number-input {
    flex: 1;
    margin-bottom: 0 !important;
    direction: ltr !important;
    text-align: left !important;
}

#btn-phone-send {
    background: #000;
    color: #fff;
    font-weight: 500;
    border: none;
    transition: background 0.2s ease, opacity 0.2s ease;
}

#btn-phone-send:hover:not(:disabled) {
    background: #333;
}

#btn-phone-send:disabled {
    background: #e5e5e5;
    color: #a3a3a3;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none;
}

.phone-error-message {
    color: #dc3545;
    font-size: 14px;
    text-align: center;
    margin-top: 16px;
    padding: 12px;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 8px;
    display: none;
}

.phone-error-message.visible {
    display: block;
}

#recaptcha-container {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .phone-country-select {
        width: 100px;
        padding: 14px 10px;
        font-size: 15px;
    }
}
