:root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #1abc9c;
            --light-color: #f8f9fa;
            --dark-color: #2c3e50;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
            padding-top: 0;
        }
        
         .breadcrumb-title {
            color: white;
            font-size: 2.5rem;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            animation: fadeInDown 1s both;
        }
        
        .breadcrumb-title-h1 {
            position: relative;
            padding-bottom: 15px;
        }
        
        .breadcrumb-title-h1::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }
        
        .iconss {
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 100;
        }
        
        .iconss a {
            color: white;
            background: rgba(255, 255, 255, 0.2);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .iconss a:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
            color: var(--accent-color);
        }
        
        .login-card {
            background: white;
            border-radius: 20px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            overflow: hidden;
            height: 100%;
            position: relative;
            animation: fadeInLeft 1s both;
            animation-delay: 0.2s;
        }
        
        .login-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
        }
        
        .login-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .login-header {
            padding: 30px 30px 10px;
            text-align: center;
            border-bottom: 1px solid #eee;
        }
        
        .login-header h3 {
            color: var(--primary-color);
            font-weight: 700;
            position: relative;
            display: inline-block;
        }
        
        .login-header h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--accent-color);
            border-radius: 2px;
        }
        
        .login-body {
            padding: 30px;
        }
        
        .form-group {
            margin-bottom: 25px;
            position: relative;
        }
        
        .form-label {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 8px;
            display: block;
            transition: var(--transition);
        }
        
        .form-control-custom {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 8px 20px;
            transition: var(--transition);
            font-size: 1rem;
            background: #f8f9fa;
        }
        
        .form-control-custom:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
            background: white;
            transform: translateY(-2px);
        }
        
        .form-icon {
            position: absolute;
            right: 20px;
            top: 45px;
            color: #adb5bd;
            transition: var(--transition);
        }
        
        .form-control-custom:focus + .form-icon {
            color: var(--secondary-color);
        }
        
        .btn-login {
            background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
            border: none;
            color: white;
            padding: 16px 30px;
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 10px;
            transition: var(--transition);
            width: 100%;
            margin-top: 10px;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
        }
        
        .btn-login:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
            color: white;
        }
        
        .btn-login:active {
            transform: translateY(0);
        }
        
        .helpline-box {
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
            border-radius: 10px;
            padding: 20px;
            margin-top: 30px;
            border-left: 5px solid var(--accent-color);
        }
        
        .helpline-box h5 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .helpline-box i {
            color: var(--accent-color);
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .terms-container {
            margin-top: 30px;
            max-height: 200px;
            overflow-y: auto;
            padding-right: 10px;
        }
        
        .terms-container h5 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .terms-list {
            list-style: none;
            padding-left: 0;
        }
        
        .terms-list li {
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
            color: #555;
        }
        
        .terms-list li::before {
            content: '•';
            color: var(--accent-color);
            font-weight: bold;
            position: absolute;
            left: 0;
            font-size: 1.5rem;
        }
        
        .pdf-container {
            background: white;
            border-radius: 20px;
            box-shadow: var(--shadow);
            overflow: hidden;
            height: 100%;
            animation: fadeInRight 1s both;
            animation-delay: 0.4s;
        }
        
        .pdf-header {
            padding: 25px 30px 15px;
            border-bottom: 1px solid #eee;
        }
        
        .pdf-header h4 {
            color: var(--primary-color);
            font-weight: 700;
            position: relative;
            display: inline-block;
        }
        
        .pdf-header h4::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--secondary-color);
            border-radius: 2px;
        }
        
        .pdf-body {
            padding: 20px;
            height: calc(100% - 80px);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .guideline-img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }
        
        .guideline-img:hover {
            transform: scale(1.02);
        }
        
        .alert-danger {
            border-radius: 10px;
            border: none;
            background: linear-gradient(to right, #ffeaea, #ffcccc);
            border-left: 5px solid #dc3545;
            color: #721c24;
            animation: shake 0.5s both;
        }
        
        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
            20%, 40%, 60%, 80% { transform: translateX(5px); }
        }
        
        /* Responsive styles */
        @media (max-width: 992px) {
            .breadcrumb-title {
                font-size: 2rem;
            }
            
            .login-card, .pdf-container {
                margin-bottom: 30px;
            }
            
            .iconss {
                position: relative;
                top: 0;
                left: 0;
                margin-bottom: 20px;
                text-align: center;
            }
            
            .iconss a {
                display: inline-flex;
            }
        }
        
        @media (max-width: 768px) {
            .breadcrumb-title {
                font-size: 1.8rem;
            }
            
            .site-breadcrumb {
                padding: 40px 0;
                margin-bottom: 30px;
            }
            
            .login-header, .login-body {
                padding: 20px;
            }
            
            .pdf-header, .pdf-body {
                padding: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .breadcrumb-title {
                font-size: 1.5rem;
            }
            
            .login-header h3 {
                font-size: 1.5rem;
            }
            
            .form-control-custom {
                padding: 12px 15px;
            }
            
            .btn-login {
                padding: 14px 20px;
            }
        }