body {

    background: url("/assets/admin/login/bg.webp");
    background-size: cover;
}

.card-wrap {
    width: 700px;
    margin: 0 auto;
    box-shadow: 0 1px 2px -2px #00000029, 0 3px 6px #0000001f, 0 5px 12px 4px #00000017;
    border-radius: 8px;
    min-width: 345px;
    max-width: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.left-wrap {
    padding: 0  20px 0 0;
    width: 380px;
    height: 390px;
}

.right-wrap {

}

.right-wrap .title {
    font-size: 24px;
    color: rgb(106 106 106 / 1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.right-wrap .title .logo {
    margin-right: 15px;
    width: 50px;
    height: 50px;
}

.code {
    width: 80px;
    height: 28px;
    position: relative;
    right: -9px;
    cursor: pointer !important;
    border: 1px solid #999999;
}

.icon {
    margin-right: 10px;
    color: #d6d7d7;
}

.copyright {
    padding: 15px 0;
    text-align: center;
}

.page-wrap {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 700px) {
    .card-wrap {
        width: auto;
    }

    .left-wrap {
        display: none;
    }
}

