body.login-page {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
}

.login-page .box {
    width: 350px;
    height: 420px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
}

.login-page .anime {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent 0deg,
        #0080ff 5deg,
        #0080ff 10deg,
        transparent 15deg,
        transparent 175deg,
        #0080ff 180deg,
        #0080ff 185deg,
        transparent 190deg,
        transparent 360deg
    );
    animation: login-anime 4s linear infinite;
}

@keyframes login-anime {
    to {
        transform: rotate(360deg);
    }
}

.login-page .con {
    width: 97%;
    height: 97%;
    background: #000;
    border-radius: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
}

.login-page .con h2 {
    color: #0080ff;
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.login-page .con__item {
    width: 100%;
    height: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-page .label {
    color: #5d5d5d;
    font-size: 12px;
    position: absolute;
    top: -10px;
    left: 15px;
    padding: 0 4px;
    background: #000;
    z-index: 3;
    transition: .4s;
}

.login-page .input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 18px;
    color: #222;
    padding: 0 18px;
    z-index: 2;
    border-radius: 30px;
    border: 1px solid #111;
    transition: .4s;
}

.login-page .input:focus {
    color: #0080ff;
    border-color: #0080ff;
}

.login-page .input:focus ~ .label {
    color: #0080ff;
}

.login-page .btn {
    width: 200px;
    height: 50px;
    color: #fff;
    border: none;
    outline: none;
    background: #0080ff;
    opacity: .7;
    border-radius: 25px;
    margin: auto;
    transition: .3s;
    cursor: pointer;
}

.login-page .btn:hover {
    transform: scale(1.04);
}

.login-page .btn:active {
    opacity: 1;
}

.login-page .login-error {
    color: #e74c3c;
    font-size: 13px;
    text-align: center;
    min-height: 20px;
    width: 100%;
}

.login-page .login-error:empty {
    display: none;
}
