.user {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #333;
    font-weight: 300;
    cursor: pointer;
    display: none;
    margin-left: 30px;
}

.user img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 8px;
}

.login-masking {
    background: rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 99;
    left: 0;
    top: 0;
    display: none;
}

.login-box {
    width: 572px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 1);
    z-index: 100;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 50px;
    display: none;
}

.login-box .h1 {
    font-size: 32px;
    font-weight: 600;
    line-height: 37.5px;
    color: rgba(51, 51, 51, 1);
    text-align: center;
    margin-bottom: 50px;
}

.login-box .h1 span {
    color: rgba(1, 83, 181, 1);
}

.login-box .items {
    display: flex;
    align-items: center;
    border-radius: 6px;
    padding: 0 14px;
    border: 1px solid rgba(153, 153, 153, 1);
    height: 56px;
    margin-bottom: 24px;
}

.login-box .items .left {
    display: flex;
    align-items: center;
}

.login-box .items:nth-of-type(3) {
    justify-content: space-between;
}

.login-box .items img {
    width: 20px;
    height: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

.login-box .items span {
    width: 70px;
    height: 40px;
    border-radius: 6px;
    background: rgba(1, 83, 181, 1);
    font-size: 16px;
    font-weight: 400;
    line-height: 40px;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    cursor: pointer;
}

.login-box .items input {
    font-size: 16px;
}

.login-box .btn {
    width: 100%;
    height: 56px;
    border-radius: 6px;
    background: rgba(1, 83, 181, 1);
    font-size: 20px;
    font-weight: 500;
    line-height: 56px;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    cursor: pointer;
}

.login-box .hideLogin {
    right: -18px;
    top: -20px;
    position: absolute;
    cursor: pointer;
    width: 40px;
    height: 40px;
}