
.contact_form {
    width: 55%;
    border-radius: 5px;
    padding: 40px 20px 20px 40px;
}


button {
    padding: 12px 15px;
    border-radius: 2px;
    font-size: 14px;
    font-family: 'Ek Mukta';
}

.email {
    color:#191717;
    text-decoration: underline;
}


/* Overlay styling */
.overlay, .register_overlay {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent dark background */
    z-index: 999;
}

label {
    display: block;
    text-align: left;
}

/* Input fields and submit button */
input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button[type="submit"] {
    width: initial;
    padding: 10px;
    background-color:#7b2020;
    color: white;
    border: none;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color:#480e0e;
}

.contact-section {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    gap: 30px;
}

.contact-info {
    width: 45%;
}

.contact-info ul {
    list-style: none;
    margin-top: 20px;
}

.contact-info ul li {
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-info ul li a {
    color: #7b2020;
    text-decoration: none;
}

.contact-form {
    width: 50%;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

.contact-form button.submit-btn {
    width: initial;
    padding: 12px;
    background-color: #7b2020;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 20px;
}

.contact-form button.submit-btn:hover {
    background-color: #5e1616;
}

.form-link {
    text-align: left;
    display: block;
}

.form-link a {
    font-size: 14px;
    text-decoration: underline;
    color: #7b2020;
    padding: 0;
}

.form-link a:hover {
    color: black;
}

.form-link p {
    font-size: 14px;
}

label {
    display: block;
    text-align: left;
}

button[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #7b2020;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

button[type="submit"]:hover {
    background-color: #480e0e;
}


input.invalid,
select.invalid,
textarea.invalid {
    border: 2px solid red;
}


.tab {
    display: none;
}

.form-header {
    font-size: 18px;
}

.form-div {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.form-checkbox,
.form-confirm {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 14px;
}

@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        align-items: center;
    }

    .contact-info, .contact-form {
        width: 90%;
    }
}
