/** ** Start of login page CSS ** **/
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 20px;
        }
        /* Navbar start */

         /* Glassmorphism navbar */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1rem 2rem;
            backdrop-filter: blur(20px);
            background: rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        nav.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        nav.scrolled .logo {
            color: #4f46e5;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        nav.scrolled .nav-links a {
            color: #1a1a1a;
        }
        
        .nav-links a:hover {
            transform: translateY(-2px);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: currentColor;
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }

        img{
            height: 200px;
            position: absolute;
        }
        
        /* Navbar end */
        /* Animated background particles */
        .bg-animation {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
            padding: 90px;
        }

        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        /* Original particles */
        .particle:nth-child(1) { width: 80px; height: 80px; left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { width: 60px; height: 60px; left: 80%; animation-delay: 2s; }
        .particle:nth-child(3) { width: 40px; height: 40px; left: 45%; animation-delay: 4s; }
        .particle:nth-child(4) { width: 100px; height: 100px; left: 70%; animation-delay: 1s; }
        .particle:nth-child(5) { width: 50px; height: 50px; left: 20%; animation-delay: 3s; }
        .particle:nth-child(6) { width: 60px; height: 60px; left: 25%; animation-delay: 0.5s; }
        .particle:nth-child(7) { width: 60px; height: 60px; left: 88%; animation-delay: 0.5s; }
        
        /* Additional particles */
        .particle:nth-child(8) { width: 35px; height: 35px; left: 5%; top: 70%; animation-delay: 1.5s; }
        .particle:nth-child(9) { width: 75px; height: 75px; left: 90%; top: 20%; animation-delay: 3.5s; }
        .particle:nth-child(10) { width: 45px; height: 45px; left: 60%; top: 80%; animation-delay: 2.5s; }
        .particle:nth-child(11) { width: 65px; height: 65px; left: 15%; top: 15%; animation-delay: 4.5s; }
        .particle:nth-child(12) { width: 30px; height: 30px; left: 85%; top: 60%; animation-delay: 0.8s; }
        .particle:nth-child(13) { width: 90px; height: 90px; left: 40%; top: 10%; animation-delay: 5s; }
        .particle:nth-child(14) { width: 55px; height: 55px; left: 75%; top: 90%; animation-delay: 1.8s; }
        .particle:nth-child(15) { width: 40px; height: 40px; left: 30%; top: 65%; animation-delay: 3.2s; }
        .particle:nth-child(16) { width: 70px; height: 70px; left: 95%; top: 40%; animation-delay: 4.8s; }
        .particle:nth-child(17) { width: 25px; height: 25px; left: 55%; top: 25%; animation-delay: 2.2s; }
        .particle:nth-child(18) { width: 80px; height: 80px; left: 8%; top: 90%; animation-delay: 5.5s; }
        .particle:nth-child(19) { width: 50px; height: 50px; left: 92%; top: 75%; animation-delay: 1.2s; }
        .particle:nth-child(20) { width: 35px; height: 35px; left: 35%; top: 35%; animation-delay: 3.8s; }
        
        

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-30px) rotate(120deg); }
            66% { transform: translateY(30px) rotate(240deg); }
        }

        .login-container {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 3rem;
            width: 100%;
            max-width: 400px;
            max-height: calc(100vh - 40px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.2);
            z-index: 10;
            position: absolute;
            animation: slideIn 0.6s ease-out;
            margin-top: 85px;
            margin-bottom: 20px;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .logo {
            text-align: center;
            margin-bottom: 2rem;
        }

        .logo h1 {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .logo p {
            color: #6b7280;
            font-size: 1rem;
        }

        .form-group {
            margin-bottom: 0.5rem;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #374151;
            font-weight: 500;
            font-size: 0.8rem;
        }

        .form-group input {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-size: 0.8rem;
            transition: all 0.3s ease;
            background: #fafafa;
        }

        .form-group input:focus {
            outline: none;
            border-color: #667eea;
            background: white;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
            transform: translateY(-2px);
        }

        .form-group input:hover {
            border-color: #d1d5db;
        }

        .password-toggle {
            position: absolute;
            right: 1rem;
            top: 2.2rem;
            cursor: pointer;
            color: #9ca3af;
            user-select: none;
            transition: color 0.2s ease;
        }

        .password-toggle:hover {
            color: #667eea;
        }

        .form-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            font-size: 0.7rem;
        }

        .remember-me {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .remember-me input[type="checkbox"] {
            width: auto;
            margin: 0;
            accent-color: #667eea;
        }

        .forgot-password {
            color: #667eea;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s ease;
        }

        .forgot-password:hover {
            color: #764ba2;
        }

        .login-btn {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .login-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        .login-btn:active {
            transform: translateY(0);
        }

        .login-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .login-btn:hover::before {
            left: 100%;
        }

        .divider {
            text-align: center;
            margin: 2rem 0;
            position: relative;
            color: #9ca3af;
        }

        .divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: #e5e7eb;
        }

        .divider span {
            background: rgba(255, 255, 255, 0.95);
            padding: 0 1rem;
        }

        .social-login {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .social-btn {
            flex: 1;
            padding: 0.75rem;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            background: white;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-weight: 500;
        }

        .social-btn:hover {
            border-color: #d1d5db;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .signup-link {
            text-align: center;
            color: #6b7280;
        }

        .signup-link a {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s ease;
        }

        .signup-link a:hover {
            color: #764ba2;
        }

        /* Responsive design */
        @media (max-width: 480px) {
            .login-container {
                margin: 1rem;
                padding: 2rem;
            }
            
            .logo h1 {
                font-size: 2rem;
            }
        }
.ttt{
    position: absolute;
}


/** Start of styling for footer **/
/* .footer{
    display: block;
    align-items: center;
    margin-top: 60px;
}

.footer h5{
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.footer h6{
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;

}

.footer p{
    display: flex;
    justify-content: center;
    padding-top: 25px;
    color: white;
} */


/** End of styling for footer **/

        /** ** End of login page CSS ** **/