 body, html {
            height: 100%;
            margin: 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .main-container {
            min-height: 100vh;
            background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
        }
        
        .illustration-section {
            backdrop-filter: blur(10px);
            padding: 3rem;
            margin: 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
			transition: all 0.3s ease; /* Transition for smooth effect */
			animation: fadeInUp 0.6s forwards;
        }
		.illustration-section:hover {
			transition: all 0.3s ease; /* Transition for smooth effect */
			transform: translateY(10px);
			animation: fadeInUp 0.6s forwards;
			animation-delay: 0.3s; /* Delay to start animation */
        }
        
        .login-section {
            backdrop-filter: blur(15px);
            border-radius: 1rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            padding: 3rem 2.5rem;
            max-width: 450px;
            width: 100%;
            margin: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
			transition: all 0.3s ease; /* Transition for smooth effect */
			animation: fadeInUp 0.6s forwards;
        }
		.login-section:hover {
            background: rgba(255, 255, 255, 0.8);
			transition: all 0.3s ease; /* Transition for smooth effect */
			transform: translateY(10px);
			animation: fadeInUp 0.6s forwards;
			animation-delay: 0.3s; /* Delay to start animation */
        }
        
        .form-control {
            background: rgba(248, 250, 252, 0.9);
            border: 2px solid #e2e8f0;
            border-radius: 0.5rem;
            padding: 1rem 1rem;
            font-size: 1rem;
            transition: all 0.3s ease;
            margin-bottom: 1.5rem;
        }
        
        .form-control:focus {
            background: white;
            border-color: #6366f1;
            box-shadow: 0 0 0 0.1rem rgba(99, 102, 241, 0.25);
            outline: none;
        }
		.form-control:hover {
            background: #EBF0F6;
        }
        
        
        .form-control::placeholder {
            color: #94a3b8;
            font-weight: 400;
        }
        
               .btn-signin {
            background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
            border: none;
            border-radius: 0.5rem;
            padding: 1rem 2rem;
            font-weight: 600;
            color: white;
            width: 100%;
            transition: all 0.3s ease;
            text-transform: none;
            letter-spacing: 0.5px;
            font-size: 1rem;
        }
        
        .btn-signin:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
            background: linear-gradient(135deg, #4f46e5 0%, #3730a3 100%);
			 color: white;
        }
        
        .form-check-input:checked {
            background-color: #6366f1;
            border-color: #6366f1;
        }
		
		.notif_text{
		text-align:center;
		}
		
		.notif_text .atext{
		opacity:0%;
		padding-top:5px;
		}
		
		.notif_text:hover .atext{
		transition: all 0.3s ease; /* Transition for smooth effect */
		opacity:100%;
				padding-top:5px;
		}
        
        .social-btn {
            min-width: 100px;
            min-height: 50px;
            border-radius: 20%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #174263;
            font-size: 20px;
            transition: all 0.3s ease;
            margin: 0 0.5rem;
			border:1px solid #c8cbce;
        }
        
        .social-btn:hover {
			 border-radius: 20%;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
			border:2px solid #a4a8ad;
        }
        
        
        .divider {
            text-align: center;
            margin: 2rem 0;
            position: relative;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        
        .divider::before,
        .divider::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 25%;
            height: 1px;
            background: #e2e8f0;
        }
        
        .divider::before {
            left: 0;
        }
        
        .divider::after {
            right: 0;
        }
        
        @media (max-width: 768px) {
            .illustration-section {
                display: none;
            }
            .login-section {
                margin: 1rem;
                padding: 2rem 1.5rem;
                max-width: calc(100% - 2rem);
            }
        }