.form-wrapper {
    width: 850px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    transition: all .3s;
}

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

.form-wrapper .selectbox {
    width: 100%;
    height: 55px;
    padding: 10px 15px;
    margin: .5rem 0;
    font-size: 15px;
    font-weight: 400;
    outline: none;
    border: 1px solid #ddd;
    transition: all .3s;
}

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

.form-wrapper .inputbox:focus {
    border: 1px solid #eeb9b9;
    background-color: #fffdfd;
}

.form-wrapper .selectbox:focus {
    border: 1px solid #eeb9b9;
    background-color: #fffdfd;
}

.form-wrapper .textbox:focus {
    border: 1px solid #eeb9b9;
    background-color: #fffdfd;
}

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

input::placeholder {
    color: #bbb;
}

textarea::placeholder {
    color: #bbb;
}


/*==========================================================*/
select {
    color: #bbb;
    width: 100%;
    height: 55px;
    margin: .5rem 0;
    font-size: 15px;
    font-weight: 400;
    outline: none;
    border: 1px solid #ddd;
    background-color: #fff;
    transition: all .3s;
    cursor: pointer;
}

select:valid {
    color: #222;
}

select option {
    color: #444;
    font-size: 15px;
    background-color: #fff;
    box-shadow: none;
}


/*==========================================================*/
.button-wrapper {
    width: 100%;
    display: flex;
    align-items: flex-end;
}

.submitBtn {
    color: #fff;
    width: 250px;
    height: 50px;
    font-size: 16px;
    font-family: 'notokr-medium';
    background-color: rgb(0, 16, 156);
    border: none;
    outline: none;
    cursor: pointer;
    transition: all .3s;
}

.submitBtn:hover {
    background-color: #e53935;
}

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



/*=============================================================*/
@media (max-width: 900px) {
    .form-wrapper {
        width: 100%;
    }

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

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

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


@media (max-width: 500px) {
    input::placeholder {
        color: #888;
    }
    
    textarea::placeholder {
        color: #888;
    }

    select {
        color: #888;
    }
}


@media (max-width: 375px) {
    .submitBtn {
        margin-top: 1rem;
    }
}
