.login-container {
    width: 100%;
    background: #FFF;
    display: flex;
}


.left-section,
.right-section {
    width: 50%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.left-section {
    background: url('/assets/images/login-pattern.jpg') no-repeat center center;
    background-size: cover;
}

.left-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--main-bg-gradient);
    opacity: 0.89;
}

.left-section .inner-holder {
    width: 100%;
    max-width: 450px;
    z-index: 1;
    text-transform: capitalize;
}

.left-section .player-container {
    position: relative;
}

.left-section .player-container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 27px;
    cursor: pointer;
    z-index: 1;
}

.left-section .player-container video {
    width: 100%;
    border-radius: 27px;
    box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.27);
}

#video-control-button {
    width: 75.21px;
    height: 75.21px;
    background: url('/assets/images/video-play-icon.svg') no-repeat center center;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.playing #video-control-button {
    background: url('/assets/images/video-pause-icon.svg') no-repeat center center;
}

.playing #video-control-button {
    opacity: 0;
    transition: all 0.3s;
}

.left-section .player-container.playing:hover #video-control-button {
    opacity: 1;
}

.left-section .login-logo {
    width: 50px;
    display: flex;
    z-index: 1;

    position: absolute;
    top: 25px;
    left: 25px;
}

.left-section .inner-holder h1 {
    font-weight: 800;
    font-size: 34px;
    line-height: 41px;
    color: #fff;
}

.left-section .inner-holder p {
    font-size: 16px;
    line-height: 20px;
    text-align: left;
    color: #fff;
}

.right-section h2 {
    font-weight: bold;
    font-size: 25px;
    text-align: center;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 7px;
}

.right-section h2 .highlight {
    color: var(--main-color);
    text-transform: uppercase;
}

.right-section h2 i {
    width: 38px;
    height: 38px;
    color: #fff;
    background: var(--main-bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin: 0;
    margin-right: 7px;
}

.right-section h2 i.sm-bold-lock:before {
    margin: 0;
    position: relative;
    top: -1px;
}

.right-section p.forget-password {
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    margin-bottom: 30px;
}

.right-section p.forget-password a {
    color: #222;
    font-weight: 700;
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.right-section .login-form {
    width: 525px;
    border-radius: 18px;
    background: #fbfcfe;
    border: 1px solid #e7ebee;
    padding: 27px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.right-section .form-group {
    width: 100%;
}

.login-form .form-group:last-of-type {
    margin-bottom: 0px;
}

.right-section .form-group .form-row {
    flex-direction: column;
}

.right-section .form-group .control-label {
    width: 100%;
    justify-content: flex-start;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 5px;
}

.right-section .form-group .form-control {
    width: 100%;
    height: 45px;
    border-radius: 9px;
    background: #fff;
    border: 1px solid #dde4e9;
}

input#password[type="password"] {
    font-size: 50px;
    letter-spacing: -4px;
    color: #6e6e6e;
}

#password::-webkit-input-placeholder {
    color: #e3e9ee;
}

#password::-moz-placeholder {
    color: #e3e9ee;
}

#password:-ms-input-placeholder {
    color: #e3e9ee;
}

#password:-moz-placeholder {
    color: #e3e9ee;
}

#password::placeholder {
    color: #e3e9ee;
}

.btn-login,
.btn-login:hover,
.btn-login:active,
.btn-login:focus {
    width: 100%;
    height: 50px;
    border-radius: 25px;
    background: var(--main-bg-gradient);
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    transition: background 0.3s;
}

a.forgot-password {
    font-weight: 500;
    font-size: 16px;
    margin: 25px auto;
    display: inline-block;
    position: relative;
    color: #222 !important;
    text-decoration: none;
}

p.rights {
    font-size: 14px;
    text-align: center;
    color: #5e6971;
}

ul.footer-links {
    margin: 0 auto;
}

ul.footer-links li {
    float: left;
    font-size: 14px;
    text-align: center;
}

ul.footer-links li a {
    color: #5e6971;
}

ul.footer-links li a:hover {
    color: var(--main-color);
}

ul.footer-links li.separator {
    margin: 0 5px;
}

.control-wrapper .sm-icon.show-hide {
    font-size: 20px;
    color: #6e6e6e;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #E0E7EC;
    margin-right: 0;
    cursor: pointer;
    user-select: none;
}

.loading-spinner {
    display: none;
}

.error-alert {
    border-radius: 8px;
    background: #f8d7da;
    color: #721c24;
    padding: 10px;
    margin-bottom: 10px;
}