body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc; /* Light blue-gray background */
    color: #334155; /* Slate 700 */
}
.message-box {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none; /* Hidden by default */
    font-weight: 500;
    text-align: center;
}
.message-box.success {
    background-color: #d1fae5; /* Green 100 */
    color: #065f46; /* Green 800 */
}
.message-box.error {
    background-color: #fee2e2; /* Red 100 */
    color: #991b1b; /* Red 800 */
}
/* Custom styles to match Tailwind design for the new form */
.form-label {
    display: block;
    color: #374151; /* Gray 700 */
    font-size: 0.875rem; /* text-sm */
    font-weight: 600; /* font-semibold */
    margin-bottom: 0.5rem; /* mb-2 */
}
.required {
    color: #ef4444; /* Red 500 */
}
.form-control {
    width: 100%;
    padding: 0.75rem 1rem; /* py-3 px-4 */
    border-radius: 0.5rem; /* rounded-lg */
    border: 1px solid #d1d5db; /* border-gray-300 */
    color: #1f2937; /* Gray 800 */
}
.form-control:focus {
    outline: none;
    box-shadow: 0 0 0 2px #3b82f6; /* focus:ring-2 focus:ring-blue-500 */
}
.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}
.input-with-icon .currency-icon {
    position: absolute;
    left: 1rem;
    color: #6b7280; /* Gray 500 */
}
.input-with-icon .form-control {
    padding-left: 2.5rem; /* Adjust padding to make space for the icon */
}
.intl-tel-input {
    width: 100%;
}
.iti--separate-dial-code .iti__selected-dial-code,.iti__country-name {
    color: #222222;
}
#phone_number
{
    padding-left: 90px !important;
}