input {
    width: auto;
}

.section-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: auto;
}

.login-box {
    display: flex;
    flex-direction: column;
    width: 85vw;
    align-items: center;
    -webkit-box-shadow: 5px 6px 15px 0px rgba(105, 105, 105, 0.45);
    box-shadow: 5px 6px 15px 0px rgba(105, 105, 105, 0.45);
}

.login-box .login-logo {
    margin: 30px auto;
    width: 70%;
    display: flex;
    justify-content: center;
}

header,
footer {
    display: none!important;
}

.login-box #loginform {
    width: 100%;
    padding: 0px 10vw;
    box-sizing: border-box;
}

.login-box .login-username,
.login-box .login-password {
    font-size: 18px;
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 15px 0;
}

.login-username input,
.login-password input {
    font-size: 18px!important;
    width: 100%;
    height: 30px;
    padding: 5px;
}

.login-box .login-submit {
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
}

.login-submit input#wp-submit {
    font-size: 18px;
    background: #de1122;
    border: none;
    color: white;
    border-radius: 5px;
    font-weight: bold;
    height: 45px;
    width: 100%;
    margin: 20px 0px 40px;
}

@media screen and (min-width: 641px) {
    .section-inner {
        width: 420px;
    }
    .login-box #loginform {
        padding: 0 50px;
    }
    .login-box {
        width: 85%;
    }
}