    .form-container {
        max-width: 100%;
        margin: 0 auto;
        background: white;
        padding: 2.5rem;
        border-radius: 10px;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group input {
        padding: 10px;
    }

    .form-group textarea {
        padding: 10px;
    }

    .form-group #countryCodes {
        width: 300px;
        height: 46px;
        padding: 10px;
        margin-right: 20px;
    }

    .form-group #country {
        width: 100%;
        height: 46px;
        padding: 10px;
    }

    .form-group #phone {
        flex: 1;
    }

    label {
        display: block;
        margin-bottom: 0.5rem;
        color: #555;
        font-weight: 500;
    }

    label span {
        color: #e74c3c;
    }

    input,
    select,
    textarea {
        width: 100%;
        padding: 0.8rem 1rem;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 1rem;
        transition: border-color 0.3s ease;
    }

    input:focus,
    select:focus,
    textarea:focus {
        outline: none;
        border-color: #4941b9;
        box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.1);
    }

    textarea {
        min-height: 120px;
        resize: vertical;
    }

    .error-message {
        color: #e74c3c;
        font-size: 0.875rem;
        margin-top: 0.3rem;
        display: none;
    }

    .submit-btn {
        background-color: #000;
        color: white;
        border: none;
        height: 50px;
        line-height: 50px;
        padding: 0rem 2rem;
        border-radius: 50px;
        font-size: 1rem;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .submit-btn:hover {
        background-color: #4941b9;
    }

    .submit-btn:disabled {
        background-color: #bdc3c7;
        cursor: not-allowed;
    }

    .success-message {
        color: #27ae60;
        text-align: center;
        margin-top: 1rem;
        display: none;
    }

    @media (max-width: 768px) {
        .form-container {
            padding: 1.5rem;
        }
    }


    @media (max-width:700px) {
        .form-group .flex {
            flex-wrap: wrap;
        }

        .form-group #countryCodes {
            width: 100%;
            height: 46px;
            padding: 10px;
            margin: 0;
            margin-bottom: 1rem;
        }
    }