* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/*  
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
} */
body {
    font-family: Verdana;
    background-color: #f4f4f4;
    justify-content: center;
    align-items: flex-start; /* Change this to flex-start */
    min-height: 100vh; /* Use min-height instead of height */
    overflow: auto; /* Ensure overflow is set to auto */
}
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
}


h2 {
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-size: 30px;
}

textarea {
    resize: vertical;
}

input[type="file"] {
    padding: 5px;
}

button.submit-btn {
    background-color: #0095ff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 30px;
}

button.submit-btn:hover {
    background-color: #11a0ff;
}

@media (max-width: 600px) {
    .contact-form-container {
        padding: 15px;
    }

    input[type="text"],
    input[type="email"],
    select,
    textarea {
        font-size: 30px;
    }

    button.submit-btn {
        font-size: 30px;
    }
}

/* Error message styling */
.error-message {
    color: red;
    font-size: 30px;
    margin-top: 5px;
    display: block;
}

.success-message{
    color: rgb(0, 134, 52);
    font-size: 30px;
    margin-top: 5px;
    display: block;
}

.error {
    border-color: red;
}
