section.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #3f3f3f;
    padding: 3rem 0 5rem 0;
}

.contact-anchor {
    position: absolute;
    bottom: 60px;
    width: 1px;
    height: 1px;
    background-color: transparent;
}
                    
.contact h2 {
    font-size: 35px;
    color: #ededed;
    text-align: center;
    margin-bottom: 46px;
    letter-spacing: -3px;
}

.contact form {
    width: 600px;
    text-align: center;
}

form .input-box {
    display: flex;
    justify-content: space-between;
}

.input-box .input-field {
    width: 48.5%;
}

.field .item {
    width: 100%;
    padding: 18px;
    background: transparent;
    border: 1px solid #ff1b1b;
    outline: none;
    border-radius: 6px;
    font-size: 16px;
    color: #ededed;
    margin: 12px 0;
}

.field.error .item {
    border-color: #d93025;
}

.field .item::placeholder {
    color: rgba(255, 255, 255, .3);
}

.field .error-txt {
    font-size: 14.5px;
    color: #d93025;
    text-align: left;
    margin: -5px 0 10px;
    display: none;
}

.field.error .error-txt {
    display: block;
}

form .textarea-field .item {
    resize: none;
}

form .textarea-field .error-txt {
    margin-top: -10px;
}

form button {
    padding: 12px 32px;
    background: #ffffff;
    border: none;
    outline: none;
    border-radius: 6px;
    box-shadow: 0 1px 5px #ffa144f5;
    font-size: 16px;
    color: #333;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: .5s;
}

form button:hover {
    box-shadow: none;
}


@media (max-width: 610px) {

    .input-box .input-field {
        width: 100%;
    }

    form .input-box {
        flex-direction: column;
    }

    .contact form {
        width: 92%;
    }

    .contact-anchor {
        bottom: 60px;
    }
}