/* Contact Form Container */
.contact-form {
    max-width: 600px; /* Increased width */
    width: 90%; /* Responsive */
    margin: 40px auto; /* Centered with space from top */
    padding: 40px;
    background-color: rgba(1, 9, 18, 0.6);
    border-radius: 10px;
}

.contact-form h2 {
    margin-bottom: 25px;
    font-size: 2em;
    text-align: center;
    color: #ffffff;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-top: 8px;
    margin-bottom: 8px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Labels */
.contact-form label {
    display: block;
    text-align: left;
    margin: 10px 0 5px;
    font-weight: bold;
    color: #ffffff;
}

/* Privacy Policy - Align checkbox and text */
.contact-form .privacy {
    display: flex;
    align-items: center; /* Align items vertically */
    justify-content: flex-start;
    margin: 20px 0; /* Add spacing */
    font-size: 0.9em; /* Slightly smaller font */
    color: #ffffff;
}

.contact-form .privacy input {
    margin-right: 8px; /* Space between checkbox and text */
    width: 16px; /* Smaller checkbox */
    height: 16px;
    accent-color: black; /* Style the checkbox with the button color */
}

.contact-form .privacy label {
    margin: 0;
    font-weight: normal;
}

.contact-form .privacy a {
    color: #dedede;
    text-decoration: none;
    font-weight: bold;
}

.contact-form .privacy a:hover {
    text-decoration: underline; /* Add underline on hover */
}

/* Submit Button - Adjust alignment */
.contact-form .submit-btn {
    background-color: white;
    color: black;
    border: none;
    padding: 12px 20px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: auto; /* Adjust button width */
    display: block;
    margin: 10px auto 0; /* Center button below the privacy policy */
}

.contact-form .submit-btn:hover {
    background-color: black;
    color: white;
    
}