@charset "UTF-8";

/* public */

*:not(input):not(pre):not(textarea) {
    user-select: none;
    text-overflow: ellipsis;
    /* -webkit-text-overflow: ellipsis; */
    white-space: nowrap;
    overflow: hidden;
    cursor: default;

    -ms-overflow-style: none;
    scrollbar-width: none;
}
html,body {
    position: relative;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    font-size: 18px;
    touch-action: manipulation;
    font-family: sans-serif;
    background-color: white;
}

.hidden {
    display: none;
}
.protect {
    pointer-events: none;
}
#template {
    display: none;
}
sup, sub {
    height: 0;
    line-height: 1;
    vertical-align: baseline;
    position: relative;
}
sup { bottom: 1ex; }
sub { top: .5ex; }

#view-frame {
    position: relative;
    width: 100%;
    height: 100%;
}
#contents {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
}

/* header */

div.view-header {
    color: white;
    background: rgb(33, 150, 243);
    width: 100%;
    height: 66px;
    overflow-x: hidden;
    overflow-y: hidden;
}
div.header-group div {
    display: inline-block;
    text-align: center;
}
div.header-group div.space {
    width: 0;
    margin: 2px;
    height: 60px;
    border-left: dotted 4px white;
}

/* #title-logo img { */
#title-logo {
    position: relative;
    top: 4px;
    width: 48px;
    height: 48px;
    font-size: 40px;
    /*
    margin: 0 5px;
    object-fit: contain;
    */
}
#title {
    position: relative;
    top: 6px;
    /* width: 640px; */
    height: 48px;
    font-size: 36px;
    text-align: left;
}

@media screen and (max-width: 1200px) {
    body {
        font-size: 16px;
    }
    div.view-header {
        height: 44px;
    }
    div.header-group div.space {
        height: 36px;
    }
    #title {
        top: 2px;
        height: 36px;
        font-size: 30px;
    }
    #title-logo {
        top: 2px;
        height: 36px;
        font-size: 30px;
    }
}

/* view-body */

div.view-body {
    position: relative;
    /* position: absolute;
    top: 64px; */
    width: 100%;
    height: calc(100% - 66px);
    overflow-y: auto;
}
@media screen and (max-width: 1200px) {
    div.view-body {
        height: calc(100% - 44px);
    }
}

div.view-body-inner {
    width: 100%;
    height: 100%;
    background: whitesmoke;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

#login-form {
    padding: 50px 100px;
    margin-bottom: 50px;
    background: white;
    border: 1px solid lightgray;
    border-radius: 10px;
    box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1200px) {
    #login-form {
        margin-bottom: 20px;
    }
}
#login-form h1 {
    color: black;
    font-size: 24px;
    margin-top: 15px;
    text-align: center;
    font-family: 'Titillium Web', sans-serif;
}
#login-form .login-form-in {
    display: table;
    margin: 0 auto;
    padding: 30px;
    border-radius: 5px;
}
#login-form .text-input {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    margin-bottom: 30px;
}
#login-form .submit {
    width: 100%;
}
#login-form .text-input span.fa,
#login-form .text-input svg.svg-inline--fa {
    font-size: 30px;
    margin-right: 20px;
    min-width: 40px;
    display: flex;
    justify-content: center;
    color: gray;
}
#login-form input {
    padding: 10px 5px;
    font-size: 20px;
    border-radius: 5px;
    width: 260px;
}
#login-form input[type="text"],
#login-form input[type="password"] {
    border: 1px solid black;
    background: rgb(230, 240, 255);
}
#login-form input[type="submit"],
#login-form input[type="button"] {
    width: 100%;
    background: rgb(33, 150, 243);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 5px;
    font-weight: 600;
    margin: 20px auto;
    /* transition: background .3s; */
    cursor: pointer;
}
#login-form input[type="submit"]:disabled,
#login-form input[type="submit"]:hover:disabled {
    color: black;
    background: lightgray;
    cursor: not-allowed;
}
#login-form input[type="submit"]:hover {
    color: black;
    background: lightpink;
}
#login-form input[type="submit"]:active {
    color: black;
    background: pink;
}

#login-form #errors {
    font-size: 20px;
    padding-inline-start: 0;
}
#login-form #errors li {
    list-style: none;
    color: red;
    display: table;
    margin: 0 auto;
}

/* password mask */

#login-form .text-input .toggle-pass {
    font-size: 20px !important;
    margin: 0 !important;
}

.input-wrap{
        position: relative;
}

.toggle-pass{
    position:absolute;
    top:50%;
    right: 5px;
    transform: translateY(-50%);
}

/* password reminder */

#login-form #password-reminder {
    font-size: 16px;
    text-align: right;
}

/* end of stylesheet */
