.form-wrapper {
    display: flex;
    flex-direction: column;
}

form {
    display: flex;
    flex-direction: column;
}

.form-wrapper .inputbox {
    width: 400px;
    height: 55px;
    padding: 10px 19px;
    margin: .5rem 0;
    font-size: 15px;
    font-weight: 400;
    outline: none;
    border: 1px solid #ddd;
}

.form-wrapper .textbox {
    width: 400px;
    height: 100px;
    padding: 10px 19px;
    margin: .5rem 0 1rem 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    outline: none;
    border: 1px solid #ddd;
}

.form-wrapper .inputbox:hover {
    background-color: #f6fdff;
}

.form-wrapper .textbox:hover {
    background-color: #f6fdff;
}

.form-wrapper .inputbox:focus {
    border: 1px solid #89befa;
    background-color: #f6fdff;
}

.form-wrapper .textbox:focus {
    border: 1px solid #89befa;
    background-color: #f6fdff;
}

.button-wrapper {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

input::placeholder {
    color: #666;
}

textarea::placeholder {
    color: #666;
}


/*==========================================================*/
.submitBtn {
    color: #222;
    width: 400px;
    height: 40px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.0625em;
    background-color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
}

.submitBtn:disabled {
    cursor: not-allowed;
    background-color: #aaa;
}



/*=============================================================*/
@media (max-width: 850px) {
    .form-wrapper .inputbox {
        border: 1px solid #bbb;
        border-radius: 8px;
    }

    .form-wrapper .textbox {
        border: 1px solid #bbb;
        border-radius: 8px;
    }
}


@media (max-width: 440px) {
    .form-wrapper {
        width: 100%;
    }

    .form-wrapper .inputbox {
        width: 100%;
    }

    .form-wrapper .textbox {
        width: 100%;
    }

    input::placeholder {
        color: #888;
    }
    
    textarea::placeholder {
        color: #888;
    }

    .button-wrapper {
        justify-content: center;
    }

    .submitBtn {
        width: 100%;
    }
}

