body {
    font-size: 1rem;
}
a {
    color: unset;
}
a:hover {
    text-decoration: unset;
}
.text-underline {
    text-decoration: underline;
}
.img-100 {
    width: 100%;
    height: auto;
}


.login-logo {
    max-width: 180px;
}
.login-main {
    background-image: url('../images/bg.jpg');
    background-position: bottom;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 101;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.first-ic {
    position: absolute;
    top: 0;
    bottom: 0px;
    margin: auto;
    width: 50px;
    height: 100%;
    display: flex;
    align-content: center;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.first-ic:before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 30%;
    background: #a4bbd0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0px;
    margin: auto;
}
.first-ic i{
    color: #bcbdbf;
}

.login-outer {
    display: flex;
    flex-wrap: wrap;
    width: 1000px;
    border-radius: 24px;
    overflow: hidden;
}

.login-content {
    width: 100%;
    background: white;
    padding: 15px;
    border-radius: 10px;
    position: absolute;
    right: -60px;
}

.login-left {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    position: relative;
}

.login-right {
    width: 50%;
    background: url('../images/bg-login.png');
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-size: cover;
    background-position: center;
    padding: 0px 10%;
}
.login-welcome {
    font-weight: bold;
    font-size: 22px;
}
.login-info {
    font-style: italic;
}
.login-title {
    color: #07091b;
    font-weight: bold;
    font-size: 2rem;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 20px;
    position:relative;
    padding-bottom: 0px;
    text-align: center;
}
.login-title h3{
    position:relative;
    display: inline-block;
    padding-bottom: 3px;
}

.login-title h3:before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 1px;
    background: #333;
    position: absolute;
    right: 0;
    left: 0px;
    bottom: 0px;
    margin: auto;
}

.login-form-div {
    margin-bottom: 20px;
}
.login-input {
    width: 100%;
    border: 0px solid #ddd;
    border-radius: 0px;
    padding: 6px 16px 6px 70px;
    height: 60px;
}
.swap-input {
    position: relative;
    border-radius: 8px !important;
    border: 1px solid #d4d4d4;
    overflow: hidden;
}
.swap-input:before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 100%;
    background: #0443c0;
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
}
.swap-input label { 
    position:absolute;
    font-size: 15px;
    left: 15px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    display: flex;
    align-content: center;
    align-items: center;
    color: #999;
    font-weight: 200;
    font-style: italic;
}

.login-input::placeholder {
    font-size: 15px;
    font-style: italic;     
}

.login-btn {
    background: #0443c0;
    display:inline-block;
    color: white;
    text-transform: uppercase;
    padding: 15px 15px;
    border: none;
    border-radius: 6px;
}

.swap-forget {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    font-size: 13px;
}

.signup-now {
    color: #333;
    font-weight: 500;
    text-decoration: underline;
}
.login-info2 {
    font-size: .9rem;
    font-style: italic;
    color: #777;
}
.box-errors {
    border: 0px solid #ddd;
    border-radius: 0px;
    margin-bottom: 15px;
    padding: 5px 0px;
    color: red;
}

.box-errors > ul {
    margin: 0px;
    padding: 0px;
}

.box-errors > ul > li {
    list-style: none;
}

.errors-text {
    font-size: 13px;
    color: red;
}
.swap-input .errors-text{
    position: absolute;
    bottom: 0;
    right: 10px;
}
.forget-btn {
    background-image: linear-gradient(to right, #3335d3, #3387ff);
    width: 100%;
    color: white;
    text-transform: uppercase;
    padding: 8px 0;
    border: none;
    border-radius: 24px;
}
.forget-btn :hover {
    opacity: 0.6;
}
.page-register .login-input{
    height: 35px;
    padding-left: 15px;
}

.leSnake span { animation: leSnake 1.5s ease-in-out; animation-iteration-count: infinite }
@keyframes leSnake {
    from, to { transform: translateY(0px) }
    50% { transform: translateY(30px) }
}

/* responsive */
@media only screen and (max-width:1200px) {
	
}
@media only screen and (max-width:990px) {
	.login-outer {
        width: 800px;
    }
}
@media only screen and (max-width:600px) {
	.login-left {
        width: 100%;
        order: 2;
    }
    .login-right {
        text-align: center;
        width: 100%;
        order: 1;
        padding: 20px 0;
        display: none;
    }
    .signup-now {
        margin-left: 5px;
    }
    .login-outer {
        border-radius: unset;
    }
    .login-info2 {
        text-align: center;
    }
}
@media only screen and (max-width:480px) {
	.login-left {
        min-height: unset;
        padding: 60px 0;
    }
    .login-content {
        width: 90%;
        position: relative;
        right: 0px;
    }
    .login-welcome {
        font-size: 1.5rem;
    }

    .el-message-box {
        width: 94% !important;
    }
    .swap-forget {
        display: flex;
    }
}