.login-block {
    position: relative;
    background-image: url(../images/BK.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: calc(100vh - 70px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-panel {
    width: 50rem;
    margin-top: -10rem;
    padding: 6rem 5rem;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: #00000020 0px 0px 5px;
}

.login-panel h4 {
    margin-bottom: 0.5rem;
}

.logo {
    width: 20rem;
    margin-bottom: 2.5rem;
}

.forgot-password-area {
    position: relative;
}

.forgot-password {
    position: absolute;
    top: 0;
    right: 0;
}

.forgot-password a {
    color: #999;
    font-size: 1.6rem;
}

.forgot-password i {
    padding-right: 5px;
}

.tip {
    margin-top: 3rem;
    text-align: center;
}

.tip a {
    color: #000;
    transition: 0.3s ease;
}

.tip a:hover {
    color: var(--two-color);
}

.verify-block{
    display: flex;
    justify-content: space-between;
}

.verify-input {
    width: calc(100% - 170px);
}

.verify-image {
    width: 150px;
}

@media(max-width:768px) {
    /*-------------------------------------------------------------------------------------------------------------------------------------------------------768*/
    .login-panel {
        width: 45rem;
    }
    .login-panel h4 {
        margin-bottom: 0rem;
    }
}

@media(max-width:576px) {
    /*--------------------------------------------------------------------------------------------------------------------------------------------------576*/
    .login-panel {
        width: 90%;
    }
    input::-webkit-input-placeholder {
        font-size: 12px;
    }
}

@media(max-width:480px) {
    /*--------------------------------------------------------------------------------------------------------------------------------------------------480*/
    .login-panel {
        padding: 5rem 4rem;
    }
    .verify-input {
        width: calc(100% - 140px);
    }

    .verify-image {
        width: 130px;
    }
}

@media(max-width:420px) {
    /*--------------------------------------------------------------------------------------------------------------------------------------------------420*/
    .login-panel {
        padding: 3.5rem 2.5rem;
    }
    .logo {
        width: 15rem;
        margin-bottom: 2rem;
    }
}
    