/* Lock Screen Styles */
.lock-screen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 1rem;
}

.lock-screen-overlay .lock-screen-container {
    width: 100%;
    max-width: 1000px;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  overflow: hidden;
    animation: slideIn 0.3s ease-out;
    display: flex;
    flex-direction: column;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
  }
    to {
        opacity: 1;
    transform: translateY(0);
    }
}

.lock-screen-overlay .logo-section {
    padding: 2rem 0 1rem;
text-align: center;
    background: white;
}

.lock-screen-overlay .lock-screen-content {
    min-height: 500px;
}

.lock-screen-overlay .avatar-lg {
    height: 5rem;
    width: 5rem;
}

.lock-screen-overlay .bg-auth {
 background: linear-gradient(135deg, var(--in-primary) 0%, var(--in-secondary) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lock-screen-overlay .auth-carousel {
    max-width: 500px;
    width: 100%;
}

.lock-screen-overlay .carousel-indicators-rounded button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
}

.lock-screen-overlay .carousel-indicators-rounded button.active {
    background-color: rgba(255, 255, 255, 1);
}

.lock-screen-overlay .password-addon {
    border: none;
    background: transparent;
    padding: 0.47rem 0.75rem;
    color: inherit;
}

.lock-screen-overlay .auth-pass-inputgroup {
    position: relative;
}

.lock-screen-overlay .auth-pass-inputgroup input {
    padding-right: 2.5rem;
}

.lock-screen-overlay .lock-screen-footer {
    padding: 1rem;
    text-align: center;
    background: white;
border-top: 1px solid #e9ecef;
}

.lock-screen-overlay .testi-contain {
    padding: 2rem 1rem;
}

/* Ensure carousel content is visible */
.lock-screen-overlay .carousel-item {
    transition: transform 0.6s ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .lock-screen-overlay .lock-screen-container {
   max-width: 95%;
    }
    
    .lock-screen-overlay .lock-screen-content {
        min-height: auto;
    }
    
    /* On mobile, only show the login form */
    .lock-screen-overlay .col-lg-6.d-none.d-md-flex {
      display: none !important;
    }
}

@media (min-width: 768px) {
    .lock-screen-overlay .lock-screen-content {
    display: flex;
 }
    
    .lock-screen-overlay .col-md-6 {
        flex: 0 0 50%;
  max-width: 50%;
    }
}

[data-bs-theme=dark] .lock-screen-overlay .lock-screen-container,
[data-bs-theme=dark] .lock-screen-overlay .logo-section,
[data-bs-theme=dark] .lock-screen-overlay .lock-screen-footer {
    background: var(--in-dark);
    color: var(--in-body-color);
}
