.new-login {
    min-height: 100vh;
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 100px;
    margin-bottom: -60px;
    position: relative;
    z-index: 1;
}

.new-login::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    background-image: linear-gradient(270deg, #ffffff00 30%, #d0d0d0 100%);
    z-index: -1;
    mix-blend-mode: multiply;
}

.new-login-logo {
    height: 60px;
    margin-bottom: 15px;
}

.new-login-box {
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 15px;
}

.new-login-title {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.new-login-title span {
    height: 34px;
    width: 1px;
    background: #1f1f1f;
}

.new-login-input {
    border-radius: 2.1px;
    border-style: solid;
    border-width: 0 0 1.05px 0.52px;
    background: transparent;
    width: 100%;
    letter-spacing: 5px;
    padding: 10px 0;
    border-color: #C8C8C8;
    outline: none;
    margin-bottom: 20px;
}

.new-login-input:focus {
    border-color: #000;
}

.new-login-btn {
    width: 100%;
    height: 40px;
    background: #000;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border: 1px solid #000;
    outline: none;
    margin-bottom: 10px;
    transition: 0.3s;
}

.new-login-btn:hover {
    background: transparent;
    color: #000;
}

@media (max-width:767px) {
    .new-login {
        padding: 50px;
        margin-bottom: -35px;
    }

    .new-login-box {
        max-width: 100%;
    }

    .new-login::before {
        background-image: linear-gradient(89deg, #ffffff6b 0%, #ffffff 100%);
        mix-blend-mode: normal;
    }

    .new-login-box {
        align-items: center;
    }

    .new-login-mute {
        text-align: right;
        width: 100%;
    }

    .new-login-text {
        text-align: right;
        width: 100%;
    }
}