.login-container {
    width: 100%;
    background: #FFF;
    display: flex;
    min-height: 100vh;
}


.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%;
    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: 16px;
}

.right-section h2 .highlight {
    color: var(--main-color);
}

.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;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .left-section .inner-holder h1 {
        font-size: 28px;
        line-height: 34px;
    }
    
    .left-section .inner-holder p {
        font-size: 14px;
        line-height: 18px;
    }
    
    .right-section .login-form {
        width: 450px;
        padding: 20px;
    }
    
    .right-section h2 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
        min-height: 100vh;
    }
    
    .left-section,
    .right-section {
        width: 100%;
        height: auto;
        min-height: 50vh;
    }
    
    .left-section {
        order: 2;
        min-height: 40vh;
        padding: 20px;
    }
    
    .right-section {
        order: 1;
        min-height: 60vh;
        padding: 20px;
    }
    
    .left-section .inner-holder {
        max-width: 100%;
        text-align: center;
    }
    
    .left-section .inner-holder h1 {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 15px;
    }
    
    .left-section .inner-holder p {
        font-size: 14px;
        line-height: 18px;
        text-align: center;
    }
    
    .left-section .player-container {
        max-width: 300px;
        margin: 0 auto 20px;
    }
    
    .left-section .player-container video {
        border-radius: 15px;
    }
    
    #video-control-button {
        width: 60px;
        height: 60px;
    }
    
    .right-section .login-form {
        width: 100%;
        max-width: 400px;
        padding: 20px;
        border-radius: 15px;
    }
    
    .right-section h2 {
        font-size: 20px;
        flex-direction: column;
        gap: 10px;
    }
    
    .right-section h2 i {
        width: 32px;
        height: 32px;
        font-size: 16px;
        margin-right: 0;
    }
    
    .right-section p.forget-password {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .right-section .form-group .control-label {
        font-size: 14px;
    }
    
    .right-section .form-group .form-control {
        height: 40px;
        font-size: 14px;
    }
    
    .btn-login {
        height: 45px;
        font-size: 16px;
    }
    
    a.forgot-password {
        font-size: 14px;
        margin: 20px auto;
    }
    
    p.rights {
        font-size: 12px;
    }
    
    ul.footer-links li {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .left-section {
        min-height: 35vh;
        padding: 15px;
    }
    
    .right-section {
        min-height: 65vh;
        padding: 15px;
    }
    
    .left-section .inner-holder h1 {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 10px;
    }
    
    .left-section .inner-holder p {
        font-size: 13px;
        line-height: 16px;
    }
    
    .left-section .player-container {
        max-width: 250px;
        margin: 0 auto 15px;
    }
    
    .left-section .player-container video {
        border-radius: 12px;
    }
    
    #video-control-button {
        width: 50px;
        height: 50px;
    }
    
    .right-section .login-form {
        padding: 15px;
        border-radius: 12px;
    }
    
    .right-section h2 {
        font-size: 18px;
    }
    
    .right-section h2 i {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .right-section p.forget-password {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .right-section .form-group .control-label {
        font-size: 13px;
        margin-bottom: 3px;
    }
    
    .right-section .form-group .form-control {
        height: 38px;
        font-size: 13px;
    }
    
    .btn-login {
        height: 42px;
        font-size: 15px;
    }
    
    a.forgot-password {
        font-size: 13px;
        margin: 15px auto;
    }
    
    p.rights {
        font-size: 11px;
    }
    
    ul.footer-links {
        display: flex;
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }
    
    ul.footer-links li {
        float: none;
        font-size: 11px;
    }
    
    ul.footer-links li.separator {
        display: none;
    }
}

@media (max-width: 360px) {
    .left-section .inner-holder h1 {
        font-size: 18px;
        line-height: 24px;
    }
    
    .left-section .inner-holder p {
        font-size: 12px;
        line-height: 15px;
    }
    
    .left-section .player-container {
        max-width: 200px;
    }
    
    .right-section .login-form {
        padding: 12px;
    }
    
    .right-section h2 {
        font-size: 16px;
    }
    
    .right-section h2 i {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .right-section .form-group .form-control {
        height: 35px;
        font-size: 12px;
    }
    
    .btn-login {
        height: 38px;
        font-size: 14px;
    }
}