.wmm-form-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.wmm-form-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.wmm-form-container input[type="text"],
.wmm-form-container input[type="email"],
.wmm-form-container input[type="file"],
.wmm-form-container select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.wmm-form-container input[type="submit"] {
    background-color: #0073aa;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.wmm-form-container input[type="submit"]:hover {
    background-color: #005177;
}

.wmm-form-container .required {
    color: red;
}

#wmm-form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
}

#wmm-form-message.success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

#wmm-form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

/* Terms and conditions styling */
.wmm-terms-section {
    margin: 20px 0;
    padding: 20px;
    border: 2px solid #0073aa;
    border-radius: 8px;
    background-color: #f0f8ff;
}

.wmm-terms-section h3 {
    margin-top: 0;
    color: #0073aa;
    text-align: center;
}

.wmm-term-item {
    margin-bottom: 15px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: white;
}

.wmm-term-item h4 {
    margin-top: 0;
    color: #333;
    font-size: 16px;
}

.wmm-term-item p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.wmm-whatsapp-btn {
    display: inline-block;
    background-color: #25d366;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.wmm-whatsapp-btn:hover {
    background-color: #128c7e;
    color: white;
    text-decoration: none;
}

.wmm-agreement {
    margin-top: 20px;
    padding: 15px;
    border: 2px solid #dc3545;
    border-radius: 5px;
    background-color: #fff5f5;
}

.wmm-agreement label {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #dc3545;
}

.wmm-agreement input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-left: 0;
    transform: scale(1.2);
}


