


        .phone-input-container {
            display: flex;
            gap: 5px;
            width: 100%;
            margin-bottom: 10px;
            position: relative;
        }

        .country-code-wrapper {
            position: relative;
            width: 42%;
        }

        .country-code-btn {
            width: 240%;
            background-color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            justify-content: space-between;
               padding: 0.875rem 1rem 0.875rem 3rem;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.2s;
        }

        .country-code-btn:focus {
            outline: none;
            border-color: #007bff;
        }

        .country-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            width: 260px;
            background: white;
            border: 1px solid #ddd;
            border-radius: 5px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            z-index: 9999;
            max-height: 280px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .country-search {
            padding: 8px 10px;
            border: none;
            border-bottom: 1px solid #eee;
            font-size: 13px;
            outline: none;
        }

        .country-list {
            list-style: none;
            margin: 0;
            padding: 0;
            overflow-y: auto;
            max-height: 220px;
        }

        .country-list li {
            padding: 8px 12px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            transition: background 0.15s;
        }

        .country-list li:hover {
            background: #f0f4ff;
        }

        .country-list li .flag {
            font-size: 18px;
        }

        .country-list li .name {
            flex: 1;
        }

        .country-list li .code {
            color: #666;
            font-size: 12px;
        }

        .phone-number-input {
            width: 58%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 14px;
        }

        .phone-number-input:focus {
            outline: none;
            border-color: #007bff;
        }


