.login-wrapper {
    padding: 30px;
    display: flex;
    gap: 30px;
}

.login-left-wrap {
    width: 50%;
    display: flex;
    position: relative;
    align-items: center;
}

.login-top {
    position: absolute;
    left: 0;
    top: 0;
}

.login-cont {
    max-width: 600px;
    height: calc(100vh - 140px);
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.login-cont h2 {
    font-size: 5em;
    margin-bottom: 30px;
}

.login-cont h4 {
    font-size: 3.3em;
    margin-bottom: 30px;
    font-family: var(--font-rg);
}

.login-mobile-box {
    border: 1px solid var(--gray60);
    padding: 10px;
    border-radius: 53px;
    margin-bottom: 20px;
    display: flex;
    height: 67px;
    align-items: center;
}

.login-mobile-code {
    border-right: 1px solid var(--gray60);
    margin-right: 15px;
    padding: 0 15px;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 1.6em;
}

.login-mobile-code i {
    padding-left: 15px;
    font-size: 12px;
    display: none;
}

.login-mobile-box input {
    flex: 1;
    border: 0;
    height: 100%;
    border-radius: 53px;
}

.login-mobile-box input[number]:placeholder {
    font-size: 12px;
    color: #a7a9ac;
}

.login-mobile-box p {
    font-size: 1.6em;
}

.login-btns {
    margin: 30px 0 15px;
    display: flex;
    gap: 20px;
}

.login-btns .btn i.icon-cross-d {
    transform: rotate(80deg);
}

.otp-input {
    display: flex;
    margin-bottom: 25px;
    gap: 20px;
}

.otp-input input {
    width: 60px;
    height: 50px;
    text-align: center;
    font-size: 1.5rem;
    border: 1px solid var(--gray60);
    border-radius: 53px;
    background: var(--white-color);
    color: var(--black-color);
    transition: all 0.3s ease;
}

.otp-input input:focus {
    box-shadow: none;
    outline: none;
}

.otp-input input::-webkit-outer-spin-button,
.otp-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.otp-input input[type="number"] {
    -webkit-appearance: textfield;
    appearance: textfield;
}

.resend-text {
    font-size: 1.6em;
}

.resend-text span {
    display: block;
	margin-bottom: 1em;
}

.resend-link {
    text-transform: uppercase;
    color: var(--blue-color);
    cursor: pointer;
}

.login-right-wrap {
    width: 50%;
    height: calc(100vh - 60px);
}

.login-bann {
    width: 100%;
    height: 100%;
}

.login-bann img {
    border-radius: 50px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.error-msg {
    color: var(--red-color);
	font-size: 16px;
	margin-bottom: 1em;
}

.reg-suc {
	display: none;
	background-color: #d4edda;
	color: #155724;
	padding: 10px;
	border-radius: 5px;
	border: 1px solid #c3e6cb;
	font-size: 1.6em;
}

.reg-suc a {
	color: #155724; 
	text-decoration: underline;
}

@media (max-width: 1050px) {
    .login-wrapper {
        flex-direction: column;
        padding: 20px;
    }
    .login-top img {
        width: 50px;
    }
    .login-left-wrap {
        width: 100%;
    }
    .login-cont {
        height: auto;
    }
    .login-right-wrap {
        width: 100%;
        height: auto;
    }
    .login-cont h2 {
        font-size: 3em;
        margin-bottom: 10px;
    }
    .login-cont h4 {
        font-size: 2.2em;
        margin-bottom: 10px;
    }
    .otp-input {
        gap: 10px;
    }
    .otp-input input {
        width: 45px;
        height: 65px;
    }
    .login-mobile-box {
        height: 50px;
        margin-bottom: 10px;
    }
}