/*===================================================
  Contact Form
  ===================================================*/
  body {
    font-family: 'Open Sans', sans-serif;
}

.containerForm {
    width: 100%;
    min-height: 100vh;
    background: #c5c8cf;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../img/parallax/city2.jpg");
    background-color: rgba(6,32,51,.8);
    background-attachment: fixed !important;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0;
}

form {
    background: white;
    display: flex;
    flex-direction: column;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

form h3 {
    color: #0eb493;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

form input, form textarea {
    font-family: 'Open Sans', sans-serif;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin: 15px 0;
    padding: 15px;
    outline: none;
    background-color: #f9f9f9;
    font-size: 16px;
    transition: all 0.3s ease;
}

form input:focus, form textarea:focus {
    border-color: #0eb493;
    box-shadow: 0 0 0 2px rgba(14, 180, 147, 0.2);
}

form button {
    font-family: 'Open Sans', sans-serif;
    padding: 15px;
    background-color: #0eb493;
    color: white;
    font-size: 18px;
    font-weight: 600;
    border: none;
    outline: none;
    cursor: pointer;
    width: 200px;
    margin: 30px auto 0;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

form button:hover {
    background-color: #0c9a7d;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(14, 180, 147, 0.3);
}

::placeholder {
    font-family: 'Open Sans', sans-serif;
    color: #999;
    font-weight: 400;
}

