.section-contact {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, rgba(129, 176, 206, 0.47) 42.73%, #00609C 97.11%);
}

.section-contact .circles {
    background: url("/assets/img/bg-form.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.section-contact .form-container {
    max-width: 946px;
    margin: auto;
}

.contact-form {
    max-width: 752px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0px 27px;
    border-radius: 100px;
    border: none;
    font-size: 20px;
    font-weight: 500;
    color: var(--secondary);
    background: rgba(255, 255, 255, 0.70);
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
    outline: none;
}

.contact-form .form-message {
    width: 100%;
    height: 316px;
    display: flex;
    flex-direction: column;
    padding: 20px 22px;
    border-radius: 24px;
    background: white;
    background: rgba(255, 255, 255, 0.70);
}

.contact-form .form-message .subject {
    border-bottom: 1px solid var(--secondary);
    color: var(--secondary);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}

.contact-form textarea {
    width: 100%;
    height: 100%;
    border: none;
    font-size: 20px;
    font-weight: 500;
    color: var(--secondary);
    background: transparent;
}

.contact-form input::placeholder {
    color: rgba(0, 38, 61, 0.30);
}

.contact-form textarea::placeholder {
    color: rgba(0, 38, 61, 0.30);
}

input[type="submit"] {
    width: 96px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 70px;
    border: none;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--primary);
    transition: all 0.2s ease-in-out;
    background: white;
}

input[type="submit"]:hover {
    background: var(--primary);
    color: white;
    transition: all 0.2s ease-in-out;
}
