
        .password-container:focus-within {
            border-color: #f77206;
            box-shadow: 0 0 0 0.2rem rgba(230, 126, 34, 0.5);
        }
        .email-container:focus-within {
            border-color: #f77206;
            box-shadow: 0 0 0 0.2rem rgba(230, 126, 34, 0.5);
        }

        .phone-icon {
            padding: 0.375rem 0.75rem;
            background: #f8f9fa;
            border-left: 1px solid #ced4da;
            display: flex;
            align-items: center;
        }

        .password-container {
            position: relative;
        }

        .password-toggle {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
        }


        .phone-field-container {
            position: relative;
        }

        .phone-input-container {
            display: flex;
            border: 2px solid #e1e5e9;
            border-radius: 5px;
            overflow: hidden;
            transition: border-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
            background: white;
        }

        .phone-input-container:focus-within {
            box-shadow: 0 0 0 0.2rem rgba(238, 117, 17, 0.5);
            transform: translateY(-2px);
        }

        .country-select {
            background: #f8f9fa;
            padding: 2px 4px;
            cursor: pointer;
            border-right: 1px solid #e1e5e9;
            display: flex;
            align-items: center;
            min-width: 100px;
            transition: background-color 0.2s ease;
            user-select: none;
        }

        .country-select:hover {
            background: #e9ecef;
        }

        .country-display {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
        }

        .selected-flag {
            font-size: 18px;
            line-height: 1;
        }

        .selected-code {
            color: #495057;
            font-weight: 500;
            font-size: 13px;
        }

        .dropdown-arrow {
            margin-left: 8px;
            transition: transform 0.2s ease;
            font-size: 12px;
            color: #6c757d;
        }

        .country-select:hover .dropdown-arrow {
            transform: rotate(180deg);
        }



        .phone-input {
            flex: 1;
            padding: 2px 4px;
            border: none;
            outline: none;
            font-size: 14px;
            background: transparent;
            color: #333;
        }

        .phone-icon {
            padding: 2px 4px;
            background: #f8f9fa;
            border-left: 1px solid #e1e5e9;
            display: flex;
            align-items: center;
            color: #6c757d;
        }

        .phone-input::placeholder {
            color: #6c757d;
            font-style: italic;
        }

        .validation-message {
            margin-top: 8px;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 14px;
            display: none;
        }

        .validation-message.error {
            background: #fee;
            color: #e74c3c;
            border: 1px solid #f5b7b1;
            display: block;
        }

        .validation-message.success {
            background: #eafaf1;
            color: #27ae60;
            border: 1px solid #a9dfbf;
            display: block;
        }

        /* Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(2px);
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-overlay-content {
            background: white;
            border-radius: 12px;
            width: 90%;
            max-width: 400px;
            max-height: 80vh;
            overflow: hidden;
            transform: scale(0.9);
            transition: transform 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .modal-overlay.active .modal-overlay-content {
            transform: scale(1);
        }

        .modal-header {
            padding: 20px;
            border-bottom: 1px solid #e1e5e9;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #f8f9fa;
        }

        .modal-title {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            color: #333;
        }

        .close-btn {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #6c757d;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background-color 0.2s ease;
        }

        .close-btn:hover {
            background: #e9ecef;
            color: #495057;
        }

        .search-container {
            padding: 15px;
            border-bottom: 1px solid #e1e5e9;
            background: white;
        }

        .search-input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e1e5e9;
            border-radius: 8px;
            font-size: 16px;
            outline: none;
            transition: border-color 0.2s ease;
        }

        .search-input:focus {
            border-color: #f77206;
            box-shadow: 0 0 0 0.2rem rgba(238, 117, 17, 0.25);
        }

        .countries-list {
            max-height: 300px;
            overflow-y: auto;
            background: white;
        }

        .country-option {
            display: flex;
            align-items: center;
            padding: 12px 20px;
            cursor: pointer;
            transition: background-color 0.2s ease;
            gap: 12px;
            border-bottom: 1px solid #f8f9fa;
        }

        .country-option:hover {
            background: #f8f9fa;
        }

        .country-flag {
            font-size: 20px;
            line-height: 1;
        }

        .country-info {
            flex: 1;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .country-name {
            font-weight: 500;
            color: #333;
        }

        .country-code {
            color: #6c757d;
            font-size: 14px;
            font-weight: 500;
        }

        /* Responsive Design */
        @media (max-width: 768px) {


            .modal-overlay-content {
                width: 95%;
                max-height: 90vh;
            }

            .phone-input-container {
                flex-wrap: wrap;
            }

            .country-select {
                min-width: 100px;
            }
        }
