@charset "UTF-8";

form > p{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1.5;
}
form p + p{
    margin-top: 24px;
}
form label{
    display: flex;
    align-items: center;
    text-align: center;
}
form label input{
    border: 1px solid #333;
    width: 200px;
    height: 36px;
    background: #fff;
}
form p > input{
    width: 80px;
    height: 36px;
    color: #fff;
    background: #dd8925;
    font-weight: bold;
    margin-left: 16px;
}
@media screen and (max-width : 750px){
    .breadcrumbs + form{
        padding: 40px 0 180px;
    }
    form label input{
        width: 260px;
        height: 48px;
    }
    form p > input{
        width: 140px;
        height: 48px;
        font-size: 26px;
        letter-spacing: 1.6px;
    }
}