body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensures full height of viewport */
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #F7F4FA;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, supported by most modern browsers */
}

.header {
    background-color: #FFFFFF;
    color: #000;
    text-align: center;
    padding: 10px 0;
}

.main-content {
    flex: 1; /* Takes up remaining vertical space */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Center content vertically */
    text-align: center;
    padding: 20px;
    background-color: #FFFFFF; /* Adjusted to match original color */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Example box shadow */
    margin-top: 20px;
}

.logo {
    width: 100px;
    margin-bottom: 10px;
    margin-top: 10px;
}

h1 {
    font-size: 24px;
    color: #7A66AF; /* Adjusted to match original color */
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px; /* Example max width for form content */
    width: 90%; /* Adjust as per design requirements */
    padding: 20px;
    box-sizing: border-box; /* Ensures padding is included in width calculation */
    background-color: #FFFFFF; /* Adjusted to match original color */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Example box shadow */
    margin-top: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px; /* Example max width for form content */
    width: 90%; /* Adjust as per design requirements */
    padding: 20px;
    box-sizing: border-box; /* Ensures padding is included in width calculation */
    background-color: #FFFFFF; /* Adjusted to match original color */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Example box shadow */
    margin-top: 20px;
}

label {
    width: 100%;
    max-width: 300px; /* Example max width for labels */
    text-align: left;
    margin: 10px 0 5px;
    color: #7A66AF; /* Adjusted to match original color */
}

input[type="text"], input[type="email"], input[type="tel"], input[type="url"], textarea {
    width: 100%;
    max-width: 300px; /* Example max width for form inputs */
    padding: 10px;
    margin: 5px 0 10px;
    border: 1px solid #7A66AF; /* Adjusted to match original color */
    border-radius: 5px;
    font-size: 16px;
}

textarea {
    height: 100px;
    resize: none; /* Prevent textarea resizing */
}

.checkbox-group, .checkbox-group2 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    width: 100%;
    max-width: 300px; /* Example max width for checkbox groups */
    margin: 10px 0;
}

.checkbox-group label, .checkbox-group2 label {
    display: flex;
    align-items: center;
    margin: 0;
}

.checkbox-group2 label {
    width: 45%; /* Adjust the width to fit two labels per row */
}

button {
    width: 100px;
    padding: 10px;
    margin: 20px 0;
    background-color: #5E2DD3; /* Adjusted to match original color */
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #4B23A4; /* Adjusted to match original color */
}




.custom-file-upload {
    display: inline-block;
    padding: 10px 15px;
    cursor: pointer;
    background-color: #5E2DD3;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    Width:30%;
    text-align: center;
}

.custom-file-upload input[type="file"] {
    display: none; /* Hide the actual file input */
}


footer {
    text-align: center;
    padding: 10px 0;
    background-color: #FFFFFF;
    color: #000;
    font-size: 12px;
    margin-top: auto; /* Pushes footer to the bottom */
}
