/* Enhanced background overlay with better opacity */
.auth-full-bg .bg-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1)),
               url('/storage/bg/bg-auth-overlay.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Code highlighting container */
.testimonial-highlight {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.testimonial-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Enhanced carousel styling */
.auth-review-carousel.owl-theme .owl-dots {
    margin-top: 1.5rem;
}

.auth-review-carousel.owl-theme .owl-dots .owl-dot span {
    background-color: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}

.auth-review-carousel.owl-theme .owl-dots .owl-dot.active span,
.auth-review-carousel.owl-theme .owl-dots .owl-dot:hover span {
    background-color: #556ee6;
    border-color: #556ee6;
    transform: scale(1.2);
}

/* Improved testimonial content */
.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial-quote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
}

.testimonial-author .author-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author .author-role {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* Quote icon enhancement */
.quote-icon {
    color: #556ee6;
    opacity: 0.8;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Enhanced login form section */
.auth-full-page-content {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
}

/* Logo centering and styling */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.auth-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.auth-logo img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
    margin: 0 !important; /* Override any Bootstrap margin classes */
    display: block;
}

.auth-logo img:hover {
    transform: scale(1.05);
}

/* Form enhancements */
.form-control {
    transition: all 0.3s ease;
    border: 1.5px solid #e3e6f0;
}

.form-control:focus {
    border-color: #556ee6;
    box-shadow: 0 0 0 0.2rem rgba(85, 110, 230, 0.15);
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, #556ee6 0%, #4f63d2 100%);
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(85, 110, 230, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(85, 110, 230, 0.4);
}

/* Responsive improvements */
@media (max-width: 768px) {
    .testimonial-highlight {
        padding: 1.5rem;
        margin: 1rem;
    }

    .testimonial-quote {
        font-size: 1rem;
    }
}

/* Animation for testimonial items */
.testimonial-item {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced footer copyright */
.copyright-text {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.copyright-text:hover {
    opacity: 1;
}