*{
    padding: 0;
    margin: 0;
    font-family: Sans-Serif;
    font-size: 14pt;
}
html, body{
    height: 100%;
}


.json-viewer{
    user-select: auto!important;
}
.wrapper{
    display: flex;
    height: 100%;
}
.cmd-wrapper{
    display: flex;
    flex-direction: column
}
.form{
    padding: 40px;
    width: 400px;
    display: flex;
    flex-direction: column;
    background:#fff;
    border-right: 1px solid #d5d5d5;
    z-index:10;
}
.response{
    padding: 66px 60px;
    background: #fafafa;
    flex-grow: 1;
}
input{
    width: 400px;
    background: #fff;
    font-size: 16pt;
    border: 1px solid #d5d5d5;
    outline: none;
    padding: 12px 20px!important;
    border-radius: 10px;
    box-sizing: border-box;
    margin:10px 0;
    transition: all .3s ease-out;
}


.btn{
    background: #fff;
    color: #000;
    margin: 25px 0;
    padding: 10px;
    width: 200px;
    cursor:pointer;
    border-radius: 10px;
    transition: all .3s ease-out;
}
.btn:hover{
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form_message{
    font-size: 16pt;
    font-style: italic;
    color: #d22323;
}

.response_help{
    color:#7f7f7f;
    font-size: 16pt;
    font-style: italic;
}

.init_wrapper{
    display: none;
}


@media screen and (max-width: 800px){
    .wrapper{
        flex-wrap: wrap;
    }
    .form{
        width: 100%;
        border:none;
    }
    input{
        width: 100%!important;
    }
    .btn{
        margin: 25px auto;
        max-width: 400px;
    }
}






