/* Styles for the contact form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    /* background-color: #f9f9f9; */
    border-radius: 8px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}

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

small {
    margin: 5px 0;
    color: #4154f1;
}

.contact-form h1 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.contact-form input,
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #007bff; /* Change border color on focus */
    outline: none; /* Remove default outline */
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}
/* 
.contact-form button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
} */

.contact-form button:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 600px) {
    .contact-form {
        padding: 15px;
    }

    .contact-form h1 {
        font-size: 20px;
    }

    .contact-form button {
        width: 100%; /* Full width button on small screens */
    }
}

/* Error Styles */
.contact-form .error {
    color: red;
    font-size: 14px;
    margin-top: -15px;
    margin-bottom: 15px;
}
