body {
    background-color: #333;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
#bg-fade-first,
#bg-fade-second {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 1;
    transition: opacity 1s;
}
.front-card {
    position: fixed;
    height: 410px;
    min-width: 664px;
    max-width: 880px;
    margin: auto;
    top: 100px;
    left: 0;
    right: 0;
    padding-left: 11px;
    padding-right: 11px;
    display: flex;
    gap: 20px;
}
.front-welcome h1 {
    font-size: 38px;
    line-height: 44px;
    margin-bottom: 30px;
    text-shadow: none;
    color: #fff;
}
.front-welcome p {
    color: #fff;
    font-size: 21px;
    line-height: 31px;
    text-shadow: none;
}
.account-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.front-login {
    background-color: #fff;
    width: 324px;
    border: 1px solid #e1e8ed;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    margin-top: 32px;
}
.front-login > div {
    background-color: #fff;
    width: 300px;
    padding: 12px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-sizing: content-box;
}
.front-signup {
    background-color: #fff;
    width: 324px;
    border: 1px solid #e1e8ed;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.front-login-pw-sep {
    display: flex;
    gap: 9px;
}
.front-login input {
    width: 100%;
    padding: 5px;
    font-size: 14px;
    border: 1px solid #ccd6dd;
    border-radius: 4px;
    box-sizing: border-box;
    box-shadow: inset 0 1px 0 #eee, #fff 0 1px 0;
}
#front-login-button {
    width: 75px;
    border: 1px solid #3b88c3;
    background-color: #55acee;
    cursor: pointer;
    color: #fff;
    font-weight: bold;
    border-radius: 4px;
    font-size: 14px;
}
#front-login-button:hover {
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15));
}
.front-signup h2,
.front-login h2 {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 12px;
    padding-right: 12px;
    border-bottom: 1px solid #e1e8ed;
}
.front-signup p {
    font-size: 12px;
    margin-top: 0;
    margin-bottom: 12px;
    padding: 0 12px;
}
.front-footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    margin-left: -8px;
    text-align: center;
    color: #fff;
    font-size: 11px;
}
.front-footer ul {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 0;
}
.front-footer li {
    list-style: none;
}
.front-footer a {
    color: #fff;
}
.front-footer a:hover {
    text-decoration: none;
}
#login-how {
    cursor: pointer;
    margin: 0;
    padding: 12px 12px 0 12px;
}
#login-how:hover > span {
    color: #55acee !important;
}
.login-how-closed {
    color: #999999;
}
.login-how-open {
    color: #505050;
}
