@charset "UTF-8";
/* CSS Document */

.fit {
    width: 100%;
    height: 95vh;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.whitespace {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: hidden;
    background-color: #FFF;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(102,102,102,0.75);
-moz-box-shadow: 0px 0px 5px 0px rgba(102,102,102,0.75);
box-shadow: 0px 0px 5px 0px rgba(102,102,102,0.75);
}

.white-wrap {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.whitespace .logo {
    width: 50%;
    max-width: 100px;
    margin: 0 auto 30px;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.whitespace h1.system-name {
    width: 100%;
    margin: 0 0 60px;
    padding: 0;
    position: relative;
    overflow: hidden;
    font-size: 180%;
    font-weight: bold;
    color: #00AA90;
    text-align: center;
}

.maintenance h1.system-name {
    margin: 0 0 30px;
}

ul.login-list {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: hidden;
    list-style: none;
}

ul.login-list li {
    width: 100%;
    margin: 0 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul.login-list li .ll-left {
    width: 25%;
    color: #00AA90;
    font-size: 110%;
    font-weight: bold;
}

ul.login-list li .ll-right {
    width: 70%;
}

ul.login-list li .ll-right input.in-login {
    width: 94%;
    margin: 0 auto;
    padding: 20px 2%;
    border: solid 1px #CCCCCC;
    border-radius: 5px;
    font-size: 120%;
}

.login-btn {
    width: 70%;
    max-width: 300px;
    margin: 60px auto;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
    background-color: #00AA90;
    border-radius: 40px;
    border: none;
    color: #FFF;
    display: block;
    font-size: 120%;
    font-weight: bold;
    letter-spacing: 0.2em;
    -webkit-box-shadow: 0px 3px 10px 0px rgba(81,147,132,0.1);
-moz-box-shadow: 0px 3px 10px 0px rgba(81,147,132,0.1);
box-shadow: 0px 3px 10px 0px rgba(81,147,132,0.1);
    cursor: pointer;
    transition: all 0.3s;
}

.login-btn:hover {
    background-color: #0050a0;
}

.maintenance-msg {
    width: 100%;
    margin: 0 0 30px;
    padding: 0;
    position: relative;
    overflow: hidden;
    font-size: 140%;
    line-height: 180%;
    font-weight: bold;
    color: #F54545;
    text-align: center;
}

.maintenance-notes {
    width: 80%;
    margin: 0 auto;
    padding: 30px 5%;
    position: relative;
    overflow: hidden;
    background-color: #EDF4F2;
}

.maintenance-notes .mn-txt {
    text-align: center;
    margin: 0 0 20px;
}

.maintenance-notes ul.mn-list {
    width: 80%;
    max-width: 230px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: visible;
    list-style: disc;
    font-size: 100%;
    line-height: 210%;
    font-weight: bold;
}


@media screen and (min-width: 0px) and (max-width: 768px) {

.fit {
    height: 100vh;
}

.whitespace {
    height: 95vh;
    align-items: flex-start;
    display: flex;
}

.white-wrap {
    padding: 30px 0 0;
}

.whitespace .logo {
    width: 40%;
    margin: 0 auto 20px;
}

.whitespace h1.system-name {
    margin: 0 0 20px;
    font-size: 140%;
}

ul.login-list li {
    width: 98%;
    margin: 0 auto 20px;
    display: block;
    justify-content: space-between;
    align-items: center;
    overflow: visible;
}

ul.login-list li:last-child {
    margin: 0 auto;
}

ul.login-list li .ll-left {
    width: 99%;
    margin: 0 auto 10px;
    color: #00AA90;
    font-size: 110%;
    font-weight: bold;
}

ul.login-list li .ll-right {
    width: 100%;
    margin: 0;
}

ul.login-list li .ll-right input.in-login {
    padding: 10px 2%;
}

.login-btn {
    margin: 30px auto 0;
}

.maintenance-msg {
    font-size: 100%;
}

.maintenance-notes {
    width: 95%;
    margin: 0 auto;
    padding: 30px 2.5%;
    position: relative;
    overflow: hidden;
    background-color: #EDF4F2;
}

.maintenance-notes .mn-txt {
    font-size: 90%;
    margin: 0 0 30px;
}

.maintenance-notes ul.mn-list {
    font-size: 90%;
    line-height: 210%;
    font-weight: bold;
    text-align: center;
}

}