* {
    padding: 0;
    margin: 0;
}

ul,
li {
    list-style: none;
}

.login {
    height: 100vh;
    min-height: 953px;
    background: url('../img/loginBK.png') no-repeat center/100% 100%;
    position: relative;
    overflow: hidden;
    font-size: 18px;
    color: #FFFFFF;
    text-align: center;
}

.logo {
    width: 150px;
    position: absolute;
    top: 37px;
    left: 60px;
}

.logo-text {
   
    font-size: 30px;
    position: absolute;
    top: 124px;
    left: 35px;
}
.form-view {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
}

.circle {
    width: 864px;
    height: 146px;
    border-radius: 50%;
    position: absolute;
    top: 82%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(176deg, #015EEA 0%, #00C0FA 100%);
    border: 0.5px solid #5AA6E4;
    box-shadow: 0px 3px 68px 0px rgba(0, 0, 0, 0.35);
}

.circle::before {
    width: 70%;
    height: 70%;
    border-radius: 50%;
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -62%);
    background: linear-gradient(176deg, #015EEA 0%, #00C0FA 100%);
    border: 0.5px solid #5AA6E4;
    box-shadow: 0px 3px 68px 0px rgba(0, 0, 0, 0.35);
}

.circle::after {
    width: 45%;
    height: 40%;
    border-radius: 50%;
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -90%);
    background: linear-gradient(176deg, #015EEA 0%, #00C0FA 100%);
    border: 0.5px solid #5AA6E4;
    box-shadow: 0px 3px 68px 0px rgba(0, 0, 0, 0.35);
}

.form-title {
    margin-bottom: 52px;
}
.form-view{
    box-shadow: -55px 90px 30px rgba(0, 0, 0, 0.3);
}
.form-view form {
    width: 271px;
    border-radius: 6px;
    border: 1px solid #5AA6E4;
    background: linear-gradient(176deg, #015EEA 0%, #00C0FA 100%);
    padding: 12px 36px 21px 41px;
    box-sizing: border-box;
    margin: 0 auto;
}

.form-input-view>li {
    position: relative;
    margin-bottom: 25px;
    height: 20px;
    border-bottom: 1px solid rgb(255, 255, 255, 0.5);
}

.form-input-view>li:last-child {
    margin-bottom: 0;
}

.form-input-view>li>input:nth-child(1) {
    outline: none;
    border-color: transparent;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    color: white;
}

.form-input-view input::placeholder {
    color: rgb(255, 255, 255, 0.5);
}

.form-link a{

     font-size: 14px;
     color: rgb(255, 255, 255, 0.5);
     cursor: pointer;
    text-decoration:none;
 }
.form-link {
    margin-top: 12px;
    font-size: 14px;
    color: rgb(255, 255, 255, 0.5);
    cursor: pointer;
}

.mb-50 {
    margin-bottom: 50px;
}

.form-link>p:hover {
    color: white;
}

.login-btn {
    width: 100%;
    padding-top: 8px;
    padding-bottom: 9px;
    box-sizing: border-box;
    border: 1px solid rgb(255, 255, 255, 0.5);
    border-radius: 25px;
    background: linear-gradient(0deg, #015EEA 0%, #00C0FA 100%);
    color: #FFFFFF;
    font-size: 14px;
    cursor: pointer;
}

.login-link {
    margin-top: 19px;
    display: flex;
    justify-content: space-around;
    font-size: 14px;
    color: rgb(255, 255, 255, 0.5);
}

.login-link>li:hover {
    color: white;
    cursor: pointer;
}

.login-link img {
    width: 38px;
    height: 38px;
}



.code-btn {
    width: 101px;
    height: 30px;
    box-sizing: border-box;
    line-height: 30px;
    color: white;
    border: 1px solid white;
    border-radius: 10px;
    background: linear-gradient(0deg, #015EEA 0%, #00C0FA 100%);
    position: absolute;
    bottom: 0;
    right: 0;
    outline: none;
}
input:disabled{
    opacity: 0.5;
}
/*input:-webkit-autofill , textarea:-webkit-autofill, select:-webkit-autofill{*/
    /*-webkit-box-shadow: 0 0 0px 1000px transparent inset;*/
    /*border: 1px solid transparent!important;*/
/*}*/
.mb-20 {
    margin-bottom: 20px;
}

.flex-row {
    display: flex;
}

.row-between {
    justify-content: space-between;
}

.row-around {
    justify-content: space-around;
}