/* General Reset */
body {
    margin: 0 !important;
    padding: 0;
 
  }
/* Style for the contact form container */
#contact_form {
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 20px auto;
    font-family: 'Arial', sans-serif;

        text-align: center;
        max-width: 600px; 
        margin: auto; 


}

#contact_form .form-title {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #333333;
}

#contact_form .form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#contact_form .form-label {
    font-size: 16px;
    font-weight: bold;
    color: #555555;
}

#contact_form .form-input,
#contact_form .form-textarea {
    font-size: 16px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 100%;
    transition: all 0.3s ease;
}

#contact_form .form-input:focus,
#contact_form .form-textarea:focus {
    border-color: #007BFF;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    outline: none;
}

#contact_form .form-button {
    font-size: 18px;
    font-weight: bold;
    padding: 12px 20px;
    background-color: #007BFF;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#contact_form .form-button:hover {
    background-color: #0056b3;
    box-shadow: 0 4px 6px rgba(0, 123, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    #contact_form {
        padding: 15px;
        max-width: 90%;
    }

    #contact_form .form-button {
        font-size: 16px;
        padding: 10px 15px;
    }
}

/* Fullscreen container for centering the message */
.fullscreen-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
    background-color: #f9f9f9; /* Light neutral background */
    margin: 0;
}

/* Message container styling */
.message-container {
    text-align: center;
    max-width: 600px;
    padding: 20px;
    border-radius: 8px;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Success message styling */
.success-message {
    background-color: #e6f7e6;
    border: 1px solid #a3d9a3;
    color: #2c662d;
}

/* Error message styling */
.error-message {
    background-color: #fdecea;
    border: 1px solid #f5c2c7;
    color: #842029;
}

/* Button styling */
.message-button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    color: #ffffff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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