/* At the top of your CSS file */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

/* body {
    font-family: 'Lato', sans-serif;
} */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    /* background-color: #f4f7f6; */
    /* display: flex; */
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.container h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    font-size: 14px;
    color: #555;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    margin-top: 5px;
    box-sizing: border-box;
}

button[type="submit"] {
    padding: 10px;
    border: none;
    cursor: pointer;
    width: 100%;
    height: 50px;
    background: #00D1FF;
    border-radius: 10px;
    text-transform: uppercase;
    color: white;
    font-size: 20px;
    font-family: Lato;
    font-weight: 800;
    word-wrap: break-word;
    margin-top: 15px;
    margin-bottom: 0;
}

/* button[type="submit"]:hover {
    background-color: #4cae4c;
} */

.message {
    /* text-align: center; */
    margin-top: 10px;
    font-size: 14px;
    display: none;
}

.message.success {
    color: green;
}

.message.error {
    color: red;
}

.--section-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr) );
    gap: 50px;
    max-width: 80%;
    margin: auto;
    width: 100%;
    padding-block: 40px;
    box-sizing: border-box;
    @media (max-width: 768px) {
        max-width: 90%;
        grid-template-columns:  minmax(0,1fr);
        padding-block: 20px;
        gap: 30px;
    }
}


/* Original Styling */
img.logo {
    display: block;
    max-height: 120px;
    margin: auto;
    @media (max-width: 768px) {
        max-height: 80px;
    }
}
.top-container {
    padding-block: 10px;
    /* margin-bottom: 15px; */
    border-bottom: 1px solid #00D1FF;
}
.form-content {
    text-align: center;
    background: #F6F6F6;
    border-radius: 10px;
    padding: 40px;
    padding-top: 15px;
    /* min-height: 100%; */
}
.form-para h3 {
    color: black;
    font-size: 24px;
    font-family: Lato;
    font-weight: 600;
    word-wrap: break-word;
}
.form-para p {
    text-align: center;
    color: black;
    font-size: 16px;
    font-family: Lato;
    font-weight: 600;
    word-wrap: break-word;
    line-height: 20px;
    margin-top: 20px;
}
footer#footer {
    border-top: 1px solid #00D1FF;
    text-align: center;
    width: 100%;
    /* height: 46px; */
}

footer#footer p {
    color: #00D1FF;
    font-size: 12px;
    font-family: Lato;
    font-weight: 400;
    /* line-height: 28px; */
    word-wrap: break-word;
    line-height: 42px;
    margin-block: 0;
}