:root {
    --form-text-color: #2F3457;
    --form-input-bg-color: #FAFCFE;
    --form-input-border-color: #dde0e7;
    --form-placeholder-text-color: #B8BCC7;
    --form-button-text-color: #B8BCC7;
}

form {
    position: relative;
    display: flex;
    flex-direction: column;
    font-family: inherit !important;
    width: 100%;
}

form .input-row {
    position: relative;
    width: 100%;
    display: flex;
    margin-bottom: 45px;
}

form .input-wrap {
    position: relative;
    width: 50%;
    margin-right: 35px;
}

::placeholder {
    color: var(--form-placeholder-text-color);
    font-weight: 400;
    font-family: inherit;
    font-size: 14px;
}

input {
    outline: none;
    color: var(--form-text-color);
    background-color: var(--form-input-bg-color);
    border: 1.5px solid var(--form-input-border-color);
    font-size: 14px;
    font-family: inherit;
    font-weight: 500;
    height: 50px;
    /* border-radius: 10px; */
    padding-left: 30px;
    width: 100%;
}

textarea {
    width: calc(100% - 35px);
    height: 50px;
    font-family: inherit;
    font-weight: 500;
    font-size: 16px;
    /* border-radius: 10px; */
    border: 1.5px solid var(--form-input-border-color);
    -webkit-appearance: none;
    margin-bottom: 50px;
    color: var(--form-placeholder-text-color);
    background-color: var(--form-input-bg-color);
    outline: none;
    padding-left: 30px;
    padding-top: 13px;
}

form button {
    width: calc(100% - 35px);
    padding: 13px 0;
    font-size: 12px;
    font-weight: 500;
    font-family: inherit;
    background-color: #ffffff00;
    border: 1.5px solid var(--form-text-color);
    /* border-radius: 10px; */
    cursor: pointer;
    transition: .3s ease;
    color: var(--form-text-color);
    outline: none;
}

form button:hover {
    background-color: var(--form-text-color);
    color: #fff;
}

@media screen and (max-width: 1100px) {

    textarea {
        height: 60px;
    }
}

@media screen and (max-width: 850px) {

    textarea {
        height: 40px;
    }
}

@media screen and (max-width: 717px) {

    form {
        padding-right: 30px;
    }

    form .input-row {
        flex-direction: column;
        margin-bottom: 0;
    }

    form .input-wrap {
        width: 100%;
        margin-bottom: 50px;
    }

    form input {
        height: 45px;
    }

    form .input-col {
        width: 100%;
        margin-bottom: 80px;
    }

    form button {
        width: 100%;
        margin-top: 40px;
    }

    textarea {
        height: 70px;
        width: 100%;
        padding-right: 15px;
    }
}