
/* register-form for contact page Body and Container Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

.form-container {
    width: 80%;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top:5px;
}

/* Heading Section */
.form-heading {
    text-align: center;
    background-color: green;
    color: white;
    padding: 20px;
    border-radius: 8px;
}

.form-hr {
    border: 0;
    height: 2px;
    background-color: #ddd;
    margin: 20px 0;
}

/* Form Group and Input Styling */
.touch-main .form-group {
    flex-direction: column;
    align-items: baseline;
    margin-bottom: 15px !important;
    width: 100%;
}
.form-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.form-group label {
    width: 30%;
    font-size: 15px;
    color: #333;
    text-align: left;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s ease-in-out;
    margin-bottom: 0;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: orange;
}

/* Full Width Styling for Textarea */
textarea {
    resize: none;
}

/* Submit Button Styling */
.submit-btn {
    width: 25%;
    background-color: green;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    margin: 0 auto;
    display: block;
}

.submit-btn:hover {
    background-color: orange;
}
.reg-inputbox {
    width: 100%;
    margin-bottom: 10px;
}
.touch-main .text-danger, #registrationForm .text-danger {
    font-size: 12px;
    margin-top: 5px;
    color: red !important;
}
/* Responsive Design */
@media only screen and (max-width: 768px) {
    .form-container {
        width: 95%;
    }

    .form-group label,
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        font-size: 12px;
        margin-bottom: 5px !important;
    }

    .form-group {
        flex-direction: column;
    }

    .submit-btn {
        width: 100%;
    }
    .touch-main .form-group {
        margin-bottom: 5px !important;
        width: 100%;
    }
    .reg-inputbox {
        margin-bottom: 5px;
    }
    .form-heading {
        padding: 10px 15px;
        border-radius: 0;
        font-size: 20px;
    }
}


/* registration form closed */

/* start terms & Privacy & Refund */

.content-container {
    width: 80%;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

.content-heading {
    text-align: center;
    background-color: green;
    color: white;
    padding: 20px;
    border-radius: 8px;
}

hr {
    border: 0;
    height: 2px;
    background-color: #ddd;
    margin: 20px 0;
}

p, ul {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

ul {
    list-style-type: disc;
    margin-left: 40px;
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
    .content-container {
        width: 95%;
    }
}


/* closed terms & Privacy & Refund */














