
html {
    width: 100%;
}

body {
    background: linear-gradient(180deg, #0A0A0A 64.9%, #190035 100%);
    width: 100%;
    min-height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
}

.login_wrap {
    width:100%;
    max-width:848px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 10px;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.login_area {
    width:848px;
    height:470px;
    border-radius: 20px;
    border: 1px solid #4A494B;
    background: linear-gradient(360deg, rgba(16, 16, 16, 0.50) 49.37%, rgba(81, 81, 81, 0.25) 100%);
    backdrop-filter: blur(7.5px);
    display: flex;
    transition: all 0.25s ease;
}

.left_side {
    width: 387px;
    height: 436px;
    margin-top: 17px;
    margin-bottom: 17px;
    margin-left: 17px;
    background-color: #190035;
    border-radius: 14px;
    position: relative;
}

.left_side img {
    width:387px;
    height: 436px;
    border-radius: 14px;
}

.admin_title {
    display: flex;
    position: absolute;
    bottom: 372px;
    left:22px;
}

.admin_title h2 {
    font-family: 'SUIT';
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    background: linear-gradient(270deg, rgba(110, 110, 110, 0.51) 4.52%, rgba(255, 255, 255, 0.84) 78.03%, rgba(63, 63, 63, 0.71) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.admin_title h5 {
    color: #6B6B6B;
    font-family: 'SUIT';
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    margin-left: 14px;
    padding-top: 20px;
}

.right_side {
    width:329px;
    height:350px;
    margin-left:57.5px;
    margin-right:57.5px;
    margin-top: 50px;
    justify-items: center;
}

.logo {
    width: 190px;
    height: 42px;
}

.logo img {
    width: 190px;
    height: 42px;
}

.input_area {
    width:329px;
    height: 156px;
    margin-top: 48px;
}

.input_area p {
    color: #FFF;
    font-family: 'SUIT';
    font-size: 15px;
    font-weight: 700;
    margin-left: 10px;
    margin-bottom: 7px;
}

.input_wrap {
    width: 329px;
    height: 42px;
    border-radius: 6px;
    border: 1px solid #3D3D3D;
    background: #101010;
    display: flex;
    align-items: center;
}

.input_wrap input {
    background-color: transparent;
    border: none;
    width: 100%;
    padding-left: 11px;
    padding-right: 11px;
    color:#fff;
    font-family: 'SUIT';
    font-size: 14px;
    font-weight: 400;
}

.input_wrap input::placeholder {
    font-family: 'SUIT';
    font-size:14px;
    font-weight: 400;
}

.id_input {
    margin-bottom: 23px;
}

.login_bt {
    margin-top: 52px;
    width: 329px;
    height: 50px;
    border-radius: 9px;
    border: 1px solid #BD8CFF;
    background: var(--gra, linear-gradient(180deg, rgba(0, 0, 0, 0.34) 84.59%, rgba(136, 80, 214, 0.16) 100%));
    color: #BD8CFF;
    font-family: 'SUIT';
    font-size: 16px;
    font-weight: 700;
    transition: all 0.45s ease;
    will-change: transform;
}

.login_bt:hover {
    background: linear-gradient(190deg, rgba(0, 0, 0, 0.12) -21.75%, rgba(136, 80, 214, 0.14) 65.69%);
    background-size: 100%;
    color:#fff;
}

.copyright {
    width:100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 300px;
    color: rgba(255, 255, 255, 0.40);
    text-align: center;
    font-family: 'SUIT';
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    padding-top: 30px;
}

@media (max-width: 870px) {
    .login_area {
        width: 420px;
        height: 436px;
        align-content: center;
        display: flex;
    }

    .left_side {
        display: none;
    }

    .right_side {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin:0 auto;
        margin-top: 40px;
    }

    .copyright {
        padding-top: 20px;
    }

    .login_wrap {
        padding-top: 320px;
    }
}