/* General Styles */


.containerr {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: #f4f4f4;
    color: #333;
    align-items: center;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    justify-content: center;
}
.contain {
    width: 80%;
    padding-left: 10%;
    
    
}
header {
    text-align: center;
    margin-bottom: 30px;
}

 .containerr h1 {
    font-size: 2.5em;
    color: #005f73;
}

 .containerr p {
    font-size: 1.2em;
    color: #2c3e50;
}

/* Contact Info Section */
.contact-info {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    color: #023e8a;
    margin-bottom: 15px;
}

.contact-info ul {
    list-style-type: none;
}

.contact-info li {
    font-size: 1.1em;
    margin-bottom: 10px;
}

/* Contact Form Section */
.contact-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    color: #023e8a;
    margin-bottom: 20px;
}

.contact-form label {
    font-size: 1.1em;
    margin-bottom: 10px;
    display: block;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.contact-form button {
    background-color: #0077b6;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1.1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #005f73;
}



/* This is for errors design */

.message-container {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    border-radius: 5px;
    overflow: hidden;
 }
 
 .message {
    padding: 12px 15px;
    font-size: 14px;
    border-left: 5px solid;
    margin-bottom: 8px;
    animation: fadeIn 0.5s ease-in-out;
 }
 
 /* Success */
 .success {
    text-decoration: none;
    background-color: #7cff7c;
    color: #2e7d32;
    border-color: #2e7d32;
 }
 
 /* Error */
 .error {
    background-color: #ffe6e6;
    color: #c62828;
    border-color: #c62828;
 }
 
 /* Animation */
 @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
 }
 


