 /* Background Image with Overlay */
        body {
            background-image: url('../img/technopark.webp'); 
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            min-height: 100vh;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 33, 71, 0.7); /* Dark blue overlay with 70% opacity */
            z-index: -1;
        }
        
        /* Header Styles */
        .login-header {
            background-color: rgba(0, 33, 71, 0.9); /* Semi-transparent header */
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .login-header .logo {
            height: 50px;
            filter: brightness(0) invert(1); /* Makes logo white */
        }
        
        /* Footer Styles */
        .login-footer {
            background-color:#cb6228;
            color: white;
            padding: 1rem 0;
            text-align: center;
            font-size: 0.9rem;
        }
        element.style {
            color: #cb6228;
        }

        .login-footer a {
            color: #fff;
            text-decoration: none;
        }
        
        .login-footer a:hover {
            text-decoration: underline;
        }
        
        /* Main Content Styles */
        .login-container {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem 0;
            min-height: calc(100vh - 120px); /* Adjust based on header/footer height */
        }
        
        .login-box {
            max-width: 450px;
            width: 100%;
            padding: 2.5rem;
            background: rgba(255, 255, 255, 0.95); /* Slightly transparent white */
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(5px); /* Adds subtle blur effect */
            align-items: center;
        }
        
        .btn-login {
            background-color: #002147;
            border-color: #002147;
            padding: 12px;
            font-weight: 500;
            letter-spacing: 0.5px;
            border-radius: 8px;
            color: #fff;
            transition: all 0.3s ease;
        }
        
        .btn-login:hover {
            background-color: #cb6228;
            border-color: #cb6228;
            transform: translateY(-2px);
        }
        
        .form-label {
            font-weight: 500;
            color: #002147;
        }
        
        .form-control {
            border-radius: 8px;
            padding: 12px;
            border: 1px solid #dee2e6;
        }
        
        .form-control:focus {
            border-color: #002147;
            box-shadow: 0 0 0 0.25rem rgba(0, 33, 71, 0.25);
        }
        
        @media (max-width: 576px) {
            .login-box {
                padding: 1.5rem;
                margin: 0 1rem;
            }
            
            .login-header .logo {
                height: 40px;
            }
        }
        

    .login-box {
        max-width: 450px;
        width: 100%;
        margin: 0 auto;
        padding: 2.5rem;
        background: white;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

        body.forgot-password-page { 
            font-family: Arial, sans-serif; 
            line-height: 1.6;
            margin: 0;
            padding: 0;
            background-color: #f5f5f5;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }
        .forgot-password-page .form-container {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            width: 100%;
            max-width: 500px;
        }
        .forgot-password-page .logo-container {
            text-align: center;
            margin-bottom: 20px;
        }
        .forgot-password-page .logo {
            max-width: 150px;
            height: auto;
        }
        .forgot-password-page h2 {
            text-align: center; 
            color: #002147;
            margin-bottom: 20px;
        }
        .forgot-password-page .form-group { 
            margin-bottom: 20px; 
        }
        .forgot-password-page label { 
            display: block; 
            margin-bottom: 8px;
            font-weight: bold;
            color: #333;
        }
        .forgot-password-page input[type="text"], 
        .forgot-password-page input[type="email"] { 
            width: 100%; 
            padding: 12px; 
            box-sizing: border-box;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
        }
        .forgot-password-page button { 
            background-color: #002147; 
            color: white; 
            padding: 12px 20px; 
            border: none; 
            cursor: pointer;
            width: 100%;
            font-size: 16px;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        .forgot-password-page button:hover { 
            background-color: #001a36; 
        }
        .forgot-password-page .error { 
            color: #d9534f;
            background-color: #f8d7da;
            padding: 10px;
            border-radius: 4px;
            margin-bottom: 20px;
            border: 1px solid #f5c6cb;
        }
        .forgot-password-page .success { 
            color: #28a745;
            background-color: #d4edda;
            padding: 10px;
            border-radius: 4px;
            margin-bottom: 20px;
            border: 1px solid #c3e6cb;
        }
        .forgot-password-page .warning-box {
            background-color: #fff3cd;
            color: #856404;
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 4px;
            border-left: 5px solid #ffeeba;
        }
        .forgot-password-page .security-question {
            background-color: #f8f9fa;
            padding: 15px;
            margin-bottom: 15px;
            border-radius: 4px;
            border-left: 4px solid #6c757d;
        }
        .forgot-password-page .security-question label {
            color: #495057;
            margin-bottom: 10px;
            display: block;
        }
        .forgot-password-page .back-link {
            display: inline-block;
            margin-top: 15px;
            color: #cb6228;
            text-decoration: none;
        }
        .forgot-password-page .back-link:hover {
            text-decoration: underline;
        }
        .forgot-password-page .email-verification {
            background-color: #e7f5fe;
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 4px;
            border-left: 4px solid #cb6228;
        }
        .forgot-password-page .login-footer {
            text-align: center;
            margin-top: 20px;
            color: #666;
            font-size: 0.9rem;
        }
    