/* css/contact.css */

.contact-section {
    width: 100%;
    max-width: 700px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.contact-section h1, .contact-section p {
    text-align: center;
}

.contact-form {
    margin-top: 30px;
    padding: 30px 25px;
    background-color: rgb(213, 213, 186);
    border: solid 2px rgb(64, 64, 77);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: rgb(64, 64, 77);
}

.input-group input[type="text"],
.input-group input[type="email"],
.input-group textarea {
    width: 100%;
    padding: 12px;
    border: solid 1px rgb(64, 64, 77);
    border-radius: 5px;
    background-color: white;
    font-size: 1em;
    font-family: 'Open sans', sans-serif;
    outline: none;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: black;
}

.contact-form .btn-primary {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
}