.custom-form-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    text-align: right;
    direction: rtl;
    font-family: 'Arial', sans-serif;
}

.form-title {
    font-size: 36px;
    color: #000;
    margin-bottom: 20px;
}

.red-text {
    color: red;
    font-size: 24px;
}

.form-options {
    margin-bottom: 20px;
}

.form-options label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
}

.form-fields input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 10px;
}

.submit-button:hover {
    background-color: #0056b3;
}

.whatsapp-button {
    width: 100%;
    padding: 10px;
    background-color: #25D366;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    margin-left: 10px;
}