.contact-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.contact-form {
    background-color: #4e82af;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
}

.contact-form h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.contact-form label {
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
}

.contact-form input{
    width: 95.5%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.contact-form textarea {
    width: 95.5%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    background-color:#609ed4;
    color: #fff;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;    
}

.contact-form button:hover {
    background-color: #40698e;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
  }
  
.message {
    text-align: center;
    background: #40698e;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
h1 {
    font-size: 24px;
    color: #ffffff;
    font-family: cursive;
  }
  
p {
    font-size: 16px;
    color: #ffffff;
    font-family: cursive;
  }



