/* contact-form.css */

.contact-form-container {
    background-color: #fff;
    padding: 30px;
    text-align: center;
    max-width: 400px;
    margin: 50px auto;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    transition: transform 0.3s;
}

.contact-form-container:hover {
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
}

.contact-form-container h2 {
    font-size: 24px;
    color: #000;
    margin-bottom: 10px;
}

.contact-form-container p {
    color: #666;
    margin-bottom: 20px;
}

.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container textarea {
    width: 80%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

.contact-form-container button {
    background-color: #6b7efb;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.contact-form-container button:hover {
    background-color: #5567e8;
    box-shadow: 0 0 8px rgba(61, 82, 160, 0.6);
}

/* Success and Error Message Styling */
.contact-form-success {
    color: green;
    font-size: 16px;
    margin-top: 10px;
}

.contact-form-error {
    color: red;
    font-size: 16px;
    margin-top: 10px;
}
.contact-icon{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.contact-icon img {
    width: 100px;
}