#login {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    padding: 0;
    margin: 0;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    display: block;
    z-index: 999;
}

.login-mask {    
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.login-layer {
    color: #333333;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    /* clip-path: polygon(0 0, 95% 0, 100% 5%, 100% 100%, 5% 100%, 0 95%); */
}

.login-layer-title {
    display: flex;
    align-items: center;
    height: 5em;
    background-color: #23272b;;
    color: #eeeeee;
    font-family: "SDK_Geometos";
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1.2;
    padding: 0 2em;
    border-bottom: 3px solid #37b2ff;
    white-space: nowrap;
    overflow: hidden;
}

.login-layer-body {
    background-color: #ffffff;
    padding: 1em 2em;
    position: relative;
}