:root {
    --primary: #3a0ca3;
    --secondary: #4361ee;
    --light: #f8f9fa;
    --dark: #212529;
    --success: #4cc9f0;
    --warning: #f72585;
}

body {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    min-height: 500px;
}

.login-left {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-right {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.logo i {
    margin-right: 10px;
    color: var(--success);
}

.feature-list {
    list-style-type: none;
    padding: 0;
    margin: 10px 0 15px 0; /* Reduced top margin from 20px */
}

.feature-list li {
    padding: 2px 0; /* Reduced from 3px */
    display: flex;
    align-items: center;
    line-height: 1.1; /* Reduced from 1.2 */
}

.feature-list i {
    background-color: rgba(255, 255, 255, 0.2);
    width: 18px; /* Reduced from 20px */
    height: 18px; /* Reduced from 20px */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px; /* Reduced from 12px */
    font-size: 0.8em; /* Reduced from 0.9em */
}

.form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(58, 12, 163, 0.25);
}

/* Fix input group icons to have consistent width */
.input-group-text {
    min-width: 45px; /* Set minimum width */
    width: 45px; /* Fixed width */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-right: none;
}

/* Make sure the envelope and lock icons have same width */
.input-group-text .fas {
    width: 16px; /* Fixed width for the icons themselves */
    text-align: center;
}

.btn-login {
    background-color: var(--primary);
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
}

.btn-login:hover {
    background-color: var(--secondary);
}

.divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.divider::before, .divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #e2e8f0;
}

.divider span {
    padding: 0 10px;
    color: #718096;
    font-size: 14px;
}

.social-login {
    display: flex;
    gap: 10px;
}

.social-btn {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-btn:hover {
    background-color: #f7fafc;
    border-color: #cbd5e0;
}

.login-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #718096;
}

@media (max-width: 768px) {
    .login-left {
        display: none;
    }
}

/* Testimonial slider styles */
.testimonial-slider {
    margin-top: 20px;
	font-size: 15px;
}

.carousel-indicators-container {
    display: flex;
    justify-content: center;
    margin-top: 5px;
}

.carousel-indicators {
    position: static;
    margin: 0;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
}

.carousel-indicators button.active {
    background-color: white;
}

.testimonial {
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.carousel-control-prev,
.carousel-control-next {
    display: none; /* Hide arrows for minimal design */
}

/* Animated background */
body {
    background: linear-gradient(-45deg, #3a0ca3, #4361ee, #4cc9f0, #7209b7);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Floating icons background - More visible */
.floating-icons {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-icons i {
    position: absolute;
    color: rgba(255, 255, 255, 0.25); /* Increased opacity for better visibility */
    font-size: 22px;
    animation: floatIcon 20s linear infinite;
}

/* Create a grid of icons covering the entire background */
.floating-icons i:nth-child(1) { top: 5%; left: 5%; animation-delay: 0s; font-size: 26px; }
.floating-icons i:nth-child(2) { top: 15%; left: 25%; animation-delay: -2s; font-size: 20px; }
.floating-icons i:nth-child(3) { top: 25%; left: 45%; animation-delay: -4s; font-size: 24px; }
.floating-icons i:nth-child(4) { top: 35%; left: 65%; animation-delay: -6s; font-size: 28px; }
.floating-icons i:nth-child(5) { top: 45%; left: 85%; animation-delay: -8s; font-size: 22px; }
.floating-icons i:nth-child(6) { top: 55%; left: 75%; animation-delay: -10s; font-size: 26px; }
.floating-icons i:nth-child(7) { top: 65%; left: 55%; animation-delay: -12s; font-size: 20px; }
.floating-icons i:nth-child(8) { top: 75%; left: 35%; animation-delay: -14s; font-size: 24px; }
.floating-icons i:nth-child(9) { top: 85%; left: 15%; animation-delay: -16s; font-size: 28px; }
.floating-icons i:nth-child(10) { top: 10%; left: 90%; animation-delay: -1s; font-size: 22px; }
.floating-icons i:nth-child(11) { top: 20%; left: 70%; animation-delay: -3s; font-size: 26px; }
.floating-icons i:nth-child(12) { top: 30%; left: 50%; animation-delay: -5s; font-size: 20px; }
.floating-icons i:nth-child(13) { top: 40%; left: 30%; animation-delay: -7s; font-size: 24px; }
.floating-icons i:nth-child(14) { top: 50%; left: 10%; animation-delay: -9s; font-size: 28px; }
.floating-icons i:nth-child(15) { top: 60%; left: 20%; animation-delay: -11s; font-size: 22px; }
.floating-icons i:nth-child(16) { top: 70%; left: 40%; animation-delay: -13s; font-size: 26px; }
.floating-icons i:nth-child(17) { top: 80%; left: 60%; animation-delay: -15s; font-size: 20px; }
.floating-icons i:nth-child(18) { top: 90%; left: 80%; animation-delay: -17s; font-size: 24px; }
.floating-icons i:nth-child(19) { top: 15%; left: 15%; animation-delay: -18s; font-size: 28px; }
.floating-icons i:nth-child(20) { top: 25%; left: 35%; animation-delay: -19s; font-size: 22px; }
.floating-icons i:nth-child(21) { top: 35%; left: 55%; animation-delay: -20s; font-size: 26px; }
.floating-icons i:nth-child(22) { top: 45%; left: 75%; animation-delay: -21s; font-size: 20px; }
.floating-icons i:nth-child(23) { top: 55%; left: 95%; animation-delay: -22s; font-size: 24px; }
.floating-icons i:nth-child(24) { top: 65%; left: 85%; animation-delay: -23s; font-size: 28px; }
.floating-icons i:nth-child(25) { top: 75%; left: 65%; animation-delay: -24s; font-size: 22px; }

@keyframes floatIcon {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-50px) rotate(90deg) scale(0.8);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-100px) rotate(180deg) scale(1.2);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-150px) rotate(270deg) scale(0.9);
        opacity: 0.35;
    }
    100% {
        transform: translateY(-200px) rotate(360deg) scale(1);
        opacity: 0.4;
    }
}