.container.login {
    display: flex;
    justify-content: center;
    align-items: center;

    min-height: calc(100vh - 120px);
    height: auto;
    margin-bottom: 60px;
    padding: 40px 20px;
    box-sizing: border-box;

}

.login>.column {
    width: 100%;
    max-width: 427px;
    min-width: 0;
}

.column form {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

input#username,
input#password {
    width: 100%;
    box-sizing: border-box;
    height: 56px;
    flex-shrink: 0;

    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.20);
    background: #FFF;

    padding-left: 15px;

    color: black;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;

    margin-bottom: 16px;
}

input#username::placeholder,
input#password::placeholder {
    color: rgba(0, 0, 0, 0.50);
}

button#login {
    border-radius: 5px;
    background: #159DFF;
    width: 100%;
    height: 56px;
    flex-shrink: 0;
    margin-top: 24px;
    border: none;
    color: #FFF;
    text-align: center;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 24px;
    cursor: pointer
}

div#bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    margin-bottom: 81px;
}

label#chkbox {
    color: rgba(0, 0, 0, 0.50);
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;

    display: flex;
    flex-direction: row;
    align-items: center;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    cursor: pointer;
}

label#chkbox>input {
    cursor: pointer;
}

a.forgot-password {
    color: rgba(0, 0, 0, 0.50);
    text-align: right;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

input#remember {
    width: 16px;
    height: 16px;

    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, 0.50);
    margin-right: 8px;
}

span#register {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    color: rgba(0, 0, 0, 0.50);

    text-align: center;
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

a#register-href {
    color: rgba(0, 0, 0, 0.50);
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration-line: underline;
}

div#logo {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 79px;
}

.alert {
    border-radius: 1px;
    border: 1px solid rgba(0, 0, 0, 0.20);
    background: #FFFAE1;

    padding: 16px;

    width: calc(427px - 32px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    color: rgba(0, 0, 0, 0.50);
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;

    margin-bottom: 26px;

    >button.close {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;

        color: rgba(0, 0, 0, 0.50);
        font-family: Pretendard;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        text-decoration-line: underline;

        border: none;
        background: none;
        padding: 0px;
    }
}


.login .alert {
    width: 100%;
    box-sizing: border-box;
}

.toggler {
    cursor: pointer;
}

.article>.head,
.collapse {
    cursor: pointer;
}

.article>.head>#title {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

#notice>.content::-webkit-scrollbar {
    display: none;
}
