*, :before, :after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

*{
    background-color: transparent;
    color: #383e42;
}

body{
    background-color: aliceblue;
}

header{
    margin: 10px auto;
    height: 40px;
    display: flex;
    flex-direction: row;
}

header a{
    text-decoration: none;
}

header h1{
    text-align: center;
    font-weight: 700;
    margin: 0 auto;
    height: 40px;
}

header a img{
    height: 40px;
    margin-left: 10px;
}

footer{
    height: 20px;
    width: 100vw;
    /* position: absolute; */
    bottom: 0;
}

footer p{
    text-align: center;
    font-size: 10px;
}

nav{
    height: 40px;
    background-color: #e0e6ea;
}

nav ul{
    height: 40px;
    
}

nav ul li{
    display: inline;
    min-width: 200px;
    text-align: center;
    line-height: 40px;
    transition: 0.5s;
    float: left;
    border-right: 1px solid #383e42;
}

nav ul li:last-child{
    float: right;
    border-right: none;
    border-left: 1px solid #383e42;
}

nav ul li:first-child{
    border-left: none;
}

nav ul li:hover{
    background-color: #c0c6ca;
    border-bottom: solid 3px #1CCC6C;
}

nav ul li a{
    padding: 0 10px;
    display: block;
    text-decoration: none;
    height: 100%;
    width: 100%;
    transition: 0.2s;
}

.wrapper{
    margin-top: 5px;
    display: flex;
    flex-direction: row;
    min-height: calc(100vh - 130px);
    width: 100vw;
}

.wrapper .login_wrapper{
    width: 500px;
    min-height: calc(100vh - 80px);
    margin: auto;
    display: flex;
}

.wrapper .login_wrapper form{
    display: flex;
    flex-direction: column;
    margin: auto;
}

.wrapper .login_wrapper form p{
    font-size: 30px;
    text-align: center;
    margin: 5px auto;
}

.wrapper .login_wrapper form input{
    display: block;
    width: 300px;
    margin: 5px 10px;
    padding: 2px 5px;
    border: solid 2px #c0c6ca;
    border-radius: 5px;
    font-size: 20px;
}

.wrapper .account{
    width: 500px;
    min-height: calc(100vh - 80px);
    margin: auto;
    display: flex;
    flex-direction: column;
}

.wrapper .account form{
    display: flex;
    flex-direction: column;
}

.wrapper .account form input{
    display: block;
    width: calc(100% - 20px);
    margin: 5px 10px;
    padding: 2px 5px;
    border: solid 2px #c0c6ca;
    border-radius: 5px;
}

.wrapper .account form input[type=submit]{
    cursor: pointer;
    transition: 0.5s;
}

.wrapper .account form input[type=submit]:hover{
    background-color: #c0c6ca;
}

.wrapper .account div p{
    font-size: 20px;
    font-weight: 300;
    text-align: center;
}

.wrapper .account p{
    font-size: 12px;
    font-weight: 300;
    text-align: justify;
}

.wrapper .account .accout_msg{
    margin: 20px auto;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
    border-radius: 5px;
}

.wrapper .account .account_success{
    background-color: #1CCC6C;
}

.wrapper .account .account_error{
    background-color: #CC594E;
}

.wrapper .upload{
    width: 500px;
    min-height: calc(100vh - 80px);
    margin: auto;
    display: flex;
    flex-direction: column;
}

.wrapper .upload form{
    display: flex;
    flex-direction: column;
}

.wrapper .upload form input{
    display: block;
    width: calc(100% - 20px);
    margin: 5px 10px;
    padding: 2px 5px;
    border: solid 2px #c0c6ca;
    border-radius: 5px;
}

.wrapper .upload form label{
    display: block;
    width: calc(100% - 20px);
    margin: 5px 10px;
    padding: 2px 5px;
    text-align: center;
}

.wrapper .upload form input[type=file]::file-selector-button{
    cursor: pointer;
    height: 30px;
    border: none;
    margin-right: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 5px;
    background-color: #c0c6ca;
    transition: 0.5s;
}

.wrapper .upload form input[type=file]::file-selector-button:hover{
    background-color: #a0a6aa;
}

.wrapper .upload form input[type=submit]{
    cursor: pointer;
    transition: 0.5s;
}

.wrapper .upload form input[type=submit]:hover{
    background-color: #c0c6ca;
}