body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    background-color: #f9f9f9;
}
.ep-iFrameContainer{
    width: 100%;
}
/* Target Safari on iOS */
@supports (-webkit-touch-callout: none) or (display: -webkit-flex) {
    select {
        -webkit-appearance: none;  /* Remove native styling */
        appearance: none;  /* Remove native styling */
        background: #fff url('your-arrow-icon.svg') no-repeat right 10px center;
        padding-right: 30px; /* Make space for custom arrow icon */
        font-size: 16px;
        border: 1px solid #ccc;
        border-radius: 5px;
        width: 200px;
    }

    select:focus {
        border-color: #007bff;
    }

    select option {
        padding: 10px;
        font-size: 16px;
    }
}

/* Additional fixes for mobile Safari */
@media only screen and (max-width: 768px) {
    select {
        padding: 12px;
        font-size: 18px;
        border-radius: 10px;
    }

    /* Optional: Adjust padding and font-size for mobile Safari */
    select option {
        font-size: 16px;
        padding: 12px;
    }
}

.form-container {
    width: 100%;
    max-width: 600px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

h2 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

label {
    font-weight: bold;
    margin-top: 1rem;
    display: block;
}

input, select, button {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button.next-btn, button.prev-btn {
    background-color: #ffc513;
    color: #ffffff;
    border: none;
    cursor: pointer;
}

button.next-btn:hover, button.prev-btn:hover {
    background-color: #ffc513;
}

.verify-btn {
    background-color: #6c757d;
    color: #ffffff;
    border: none;
    cursor: pointer;
    margin-top: 5px;
    width: auto;
    display: inline-block;
    padding: 5px 10px;
}
