* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body.login {
            background: linear-gradient(135deg, #145886 0%, #0d3c5f 100%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            position: relative;
            overflow: hidden;
        }
        
        /* Watermark effect */
        body.login::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(255,255,255,0.05) 0%, transparent 20%),
                radial-gradient(circle at 80% 70%, rgba(255,255,255,0.05) 0%, transparent 20%);
            z-index: 0;
        }
        
        #login {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 420px;
            padding: 0;
            animation: fadeIn 0.8s ease-out;
        }
        
        /* Logo styling */
        .login-logo {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            animation: slideDown 0.6s ease-out;
        }
        
        .login h1 a {
            background-image: url('https://icaidibrugarh.com/DibrugarhLogo.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            width: 100% !important;
            height: 90px !important;
            display: block;
            margin: 0 auto 30px !important;
            text-indent: -9999px;
            overflow: hidden;
            filter: drop-shadow(0 3px 5px rgba(0,0,0,0.2));
            animation: slideDown 0.6s ease-out;
        }
        
        /* Card styling */
        .login form {
            background: #ffffff;
            border-radius: 16px;
            padding: 40px 35px;
            box-shadow: 0 12px 30px rgba(0,0,0,0.25);
            width: 100%;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .login form:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.3);
        }
        
        /* Form header */
        .login-header {
            text-align: center;
            margin-bottom: 25px;
        }
        
        .login-header h2 {
            color: #145886;
            font-size: 24px;
            margin-bottom: 8px;
            font-weight: 600;
        }
        
        .login-header p {
            color: #666;
            font-size: 15px;
        }
        
        /* Input styling */
        .login label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #444;
            font-size: 14px;
        }
        
        .login form .input, 
        .login input[type="text"], 
        .login input[type="password"] {
            border-radius: 8px;
            padding: 14px 16px;
            border: 1px solid #ddd;
            width: 100%;
            box-sizing: border-box;
            font-size: 15px;
            transition: all 0.3s ease;
            background-color: #fafafa;
            margin-bottom: 20px;
        }
        
        .login form .input:focus, 
        .login input[type="text"]:focus, 
        .login input[type="password"]:focus {
            outline: none;
            border-color: #145886;
            box-shadow: 0 0 0 3px rgba(20, 88, 134, 0.15);
            background-color: #fff;
        }
        
        /* Button styling */
        .login .button-primary {
            background: linear-gradient(to right, #145886, #1a6ba3);
            border: none;
            padding: 14px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
            width: 100%;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(20, 88, 134, 0.2);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 5px;
        }
        
        .login .button-primary:hover {
            background: linear-gradient(to right, #1a6ba3, #145886);
            transform: translateY(-2px);
            box-shadow: 0 6px 10px rgba(20, 88, 134, 0.3);
        }
        
        .login .button-primary:active {
            transform: translateY(0);
        }
        
        /* Links and extras */
        .login #nav,
        .login #backtoblog {
            text-align: center;
            padding: 15px 0;
        }
        
        .login #nav a,
        .login #backtoblog a {
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }
        
        .login #nav a:hover,
        .login #backtoblog a:hover {
            color: white;
            text-decoration: underline;
        }
        
        .login .forgetmenot {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .login .forgetmenot input {
            margin-right: 8px;
        }
        
        /* Footer styling */
        .login-footer {
            text-align: center;
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid #eee;
            color: #777;
            font-size: 13px;
        }
        
        /* Responsive design */
        @media (max-width: 480px) {
            .login form {
                padding: 30px 25px;
            }
            
            .login-logo a {
                height: 70px;
            }
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }