body {
    background-color: #ECEFF1;
}
input {
    margin: 0;
    padding: 0;
}
#bx {
    width: 500px;
    height: 400px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
#title {
    font-size: 1.5em;
    text-align: center;
    padding: 10px;
    font-family: 'sofia-sans', serif;
}
#formbx {
    background-color: #fff;
    height: 280px;
    border-radius: 10px;
    box-shadow: 0px 5px 5px 1px #b7b7b7;
}
#formbx p {
    font-weight: bold;    
}
#formcontent {
    padding: 50px;
    font-family: 'sofia-sans', serif;
}
#formcontent p {
    text-align: center;
}
#pinentry {
    width: 356px;
    padding: 20px;
    border: 0;
    text-align: center;
    border-bottom: 1px solid #000;
}
#submitbtn {
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 60px;
    width: 210px;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #b9b9b9;
    background-color: #66a3ff;
    color: #fff;
}
@font-face {
    font-family: sofia-sans;
    src: url('../fonts/Sofia_Sans/static/SofiaSans-Bold.ttf');
}
@media (max-width: 700px) {
    #bx {
        width: 95vw;
    }
    #pinentry {
        width: 61.02vw;
        position: absolute;
        margin: auto;
        left: 0;
        right: 0;
    }
}