
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-family: inherit;
    vertical-align: baseline;
    font-size:16px;
}

html,body{
    width:100%;
    height:100%;
}

.contain{
    display:flex;
    flex-direction: column;
    background-color: #0a628f;
    width:100vw;
    height:100vh;
    background-image: url(/frame/img/backimg_1.png);
    background-repeat: round;
    background-size: cover;
    color:white;
}
.contain .header{
    width:100%;
    flex:1;
    /*background-color: #2e2e2e;*/
}

.contain .content{
    /*flex:4;*/
    margin-left:60vw;
    margin-right:15vw;
    display:flex;
    border:1px solid #313131;
    border-radius: 2rem;
    background-color: rgba(0, 0, .2 ,.08);
    padding: 2.5vw;
    flex-direction: column;
}

.contain .content .title{
    color:white;
    font-size: 2rem;
    margin-left: 5rem;
    margin-bottom: 1rem;
}

.contain .content .input{
    display:flex;
    margin-bottom:1rem;
    height:2rem;
}
.contain .content .input .label{
    min-width: 3rem;
    text-align: justify;
    margin: 0 0.5rem;
    line-height: 2rem;
}
.contain .content .input .label::after {
    display: inline-block;
    width: 100%;
    content: "";
}
.contain .content .input input{
    padding: 0 0.5rem;
    flex:1;
}
.contain .content .input img{
    height: 2rem;
}
.contain .foot{
    width:100%;
    flex:2;
}