.contact-ctn{  
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 100px auto;
    flex-wrap: wrap;
}

.contact-form {
    background-color: white;
    border-radius: 10px;
    flex: 2;
    padding: 20px 60px;
    min-width: 400px;
    min-height: 200px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.contact-form h2 {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 15px;
    color: black;
}


.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    text-align: left;
    font-weight: bold;
    margin-bottom: 5px;
    margin-top: 10px;
    text-transform: uppercase;
    font-size: 12px;
}

.form-group input,
.form-group textarea {
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 10px 5px;
    font-size: 14px;
    background: transparent;
    outline: none;
    resize: none;
}

/* form button {
    margin-top: 20px;
    padding: 10px;
    background: #0d82e7;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
    width: 180px;
}

form button:hover {
    background: #1c64a3;
} */

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* 100% of viewport height */
}

main {
    flex: 1; /* Take up remaining space */
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
    color: black;
    text-decoration: none;
}

/* Message styles */
.success {
    color: green;
    margin-top: 10px;
}

.error {
    color: red;
    margin-top: 10px;
}