.wrapper {
    width: 290px;
    margin: 0 auto 0 auto;
    padding: 200px 67px 50px;
    border-radius: 5px;
}

.wrapper > input {
    color: rgba(255, 255, 255, 0.9);
}

#heartImage {
    display:block;
}

#spatchTitle {
    width: 110px;
    height: 35px;
    opacity: 0.8;
    font-family: Arial;
    font-size: 30px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #ffffff;
}

.login-container {
    width: 100%;
    height: 95%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.login-user-info {
    font-family: Interstate;
    font-size: 15px;
    font-weight: 400;
    width: 340px;
    height: 62px;
    border-radius: 8px;
    background-color: var(--box-09-color);
    border: none;
    padding-left: 30px;
    color: var(--text-01-color);
}
.login-user-info::placeholder {
    color: #A7A3FF;
}


.login-user-pwd {
    font-family: Interstate;
    font-size: 15px;
    font-weight: 400;
    width: 340px;
    height: 62px;
    border-radius: 8px;
    background-color: var(--box-09-color);
    border: none;
    padding-left: 30px;
    color: var(--text-01-color);
}

.login-user-pwd::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #A7A3FF;
    letter-spacing: 0 !important;
}

.login-user-pwd::-moz-placeholder { /* Firefox 19+ */
    color: #A7A3FF;
    letter-spacing: 0 !important;
}

#loginErrorMsg {
    font-family: Interstate;
    font-size: 13px;
    color: #ea625c;
    text-align: left;
    margin-left: 5px;
    margin-top: 3px;
}

#keepMeRadioBtn {
    width: 13px;
    height: 13px;
    float: left;
    margin: 1px 5px 0 0;
}

.keep-me-signed-in {
    float: left;
    height: 14px;
    font-family: Interstate;
    font-size: 13px;
    color: var(--text-05-color);
}
.login-comment {
    width: 410px;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    color: var(--text-05-color);
    margin-top: 48px;
    font-family: Interstate;
}

.login-button {
    font-family: Interstate;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    background-color: var(--main_purple);
    border-radius: 9px;
    border: none;
    margin-bottom: 15px;
    width: 369px;
    height: 59px;
    cursor: pointer;
    color: #ffffff;
}

.login-checkbox {
    width: 15px;
    height: 15px;
    border-radius: 2px;
    background-color: #1d1d1d;
    border: solid 1px #4b4c4f;
}

.footer {
    font-size: 12px;
    color: #a1a1a1;
}

.keep-me-signed-in>input[type=checkbox] {
    display: none;
}

.keep-me-signed-in>input[type=checkbox] + label span{
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    position: relative;
    background: var(--site_checkbox_unchecked);
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 7px;
    font-size: 13px;
    width: 15px;
    height: 15px;
    user-select: none;
}

.keep-me-signed-in>input[type=checkbox]:checked + label span:before {
    content:'';
    width: 15px;
    height: 15px;
    display: inline-block;
    background: var(--site_checkbox_checked);
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
}