body,
html {
    height: 100vh;
    margin: 0;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.ContactSection {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgb(11, 146, 190);
    height: 20vh;
    margin-bottom: 2rem;

}

.ContactSection h1 {
    font-size: 4.5rem;
    margin-bottom: 0.5rem;
    color: rgb(109, 108, 108);
}

.ContactSection p {
    text-align: center;
    font-size: 2rem;
    color: rgb(31, 84, 130);
}

.Contact-Form {
    background-color: #dbd7d7;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
    max-width: 800px;
    opacity: 0.9;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    background-color: #f9f9f9;
    outline: none;
    transition: border-color 0.3s;
}

textarea {
    resize: none;
}

input:focus,
textarea:focus {
    border-color: #4a90e2;
}

.icon {
    position: absolute;
    right: 10px;
    font-size: 18px;
    color: #b0b0b0;
    pointer-events: none;
}

.btn-submit {
    padding: 12px;
    font-size: 16px;
    color: white;
    background-color: #4a90e2;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #357ab8;
}