 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow: hidden;
            height: 100vh;
            background: linear-gradient(135deg, #1a1a1a 0%, #00A859 50%, #0d0d0d 100%);
            position: relative;
        }

        .animated-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .circle {
            position: absolute;
            border-radius: 50%;
            animation: float 20s infinite;
        }

        .circle:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 10%;
            left: 20%;
            background: rgba(0, 168, 89, 0.2);
            animation-delay: 0s;
        }

        .circle:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 60%;
            left: 80%;
            background: rgba(255, 255, 255, 0.1);
            animation-delay: 2s;
        }

        .circle:nth-child(3) {
            width: 60px;
            height: 60px;
            top: 80%;
            left: 10%;
            background: rgba(0, 168, 89, 0.25);
            animation-delay: 4s;
        }

        .circle:nth-child(4) {
            width: 100px;
            height: 100px;
            top: 30%;
            left: 70%;
            background: rgba(0, 0, 0, 0.3);
            animation-delay: 1s;
        }

        .circle:nth-child(5) {
            width: 90px;
            height: 90px;
            top: 50%;
            left: 40%;
            background: rgba(0, 168, 89, 0.15);
            animation-delay: 3s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) translateX(0);
                opacity: 0.4;
            }
            50% {
                transform: translateY(-50px) translateX(50px);
                opacity: 0.7;
            }
        }

        .login-container {
            position: relative;
            z-index: 1;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .login-card {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            overflow: hidden;
            width: 100%;
            max-width: 440px;
            animation: slideUp 0.8s ease-out;
            border: 3px solid rgba(0, 168, 89, 0.3);
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .login-header {
            background: linear-gradient(135deg, #000000 0%, #00A859 100%);
            padding: 40px 30px 30px;
            text-align: center;
            position: relative;
        }

        .logo-container {
            width: 140px;
            height: 140px;
            background: white;
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 168, 89, 0.4);
            animation: pulse 2s ease-in-out infinite;
            padding: 15px;
            border: 3px solid rgba(255, 255, 255, 0.5);
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 10px 30px rgba(0, 168, 89, 0.4);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 15px 40px rgba(0, 168, 89, 0.6);
            }
        }

        .logo-container img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .login-header h1 {
            color: white;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 5px;
            text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
        }

        .login-header p {
            color: rgba(255, 255, 255, 0.95);
            font-size: 14px;
            margin: 0;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }

        .login-body {
            padding: 40px 30px;
        }

        .input-group {
            margin-bottom: 20px;
            width: 100%;
        }

        .input-wrapper {
            position: relative;
            width: 100%;
        }

        .input-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #00A859;
            font-size: 18px;
        }

        .form-control {
            padding: 18px 15px 18px 50px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            font-size: 15px;
            transition: all 0.3s ease;
            height: 56px;
            width: 100%;
        }

        .form-control:focus {
            border-color: #00A859;
            box-shadow: 0 0 0 4px rgba(0, 168, 89, 0.15);
            outline: none;
        }

        .btn-login {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #00A859 0%, #008545 100%);
            border: none;
            border-radius: 12px;
            color: white;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(0, 168, 89, 0.3);
        }

        .btn-login:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 168, 89, 0.5);
            background: linear-gradient(135deg, #00BE68 0%, #00A859 100%);
        }

        .btn-login:active {
            transform: translateY(0);
        }

        .forgot-password {
            text-align: center;
            margin-top: 20px;
        }

        .forgot-password a {
            color: #00A859;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .forgot-password a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 50%;
            background: #00A859;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .forgot-password a:hover:after {
            width: 100%;
        }

        .forgot-password a:hover {
            color: #008545;
        }

        .remember-me {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .remember-me input[type="checkbox"] {
            width: 18px;
            height: 18px;
            margin-right: 8px;
            cursor: pointer;
            accent-color: #00A859;
        }

        .remember-me label {
            font-size: 14px;
            color: #333;
            cursor: pointer;
            margin: 0;
        }

		

        .accent-stripe {
            height: 4px;
            background: linear-gradient(90deg, 
				 #000000 0%, #000000 33.33%,
                #ffffff 33.33%, #ffffff 66.66%,
                #00A859 66.66%, #00A859 100%
            );
            position: absolute;
            bottom: 0;
            width: 100%;
        }

        @media (max-width: 576px) {
            .login-header h1 {
                font-size: 24px;
            }
            
            .login-body {
                padding: 30px 20px;
            }

            .logo-container {
                width: 110px;
                height: 110px;
            }
        }


        /* Message Container */
	.message-container {
		margin-bottom: 20px;
	}

	/* Alert Styles */
	.alert {
		padding: 16px 20px;
		margin-bottom: 16px;
		border-radius: 12px;
		display: flex;
		align-items: flex-start;
		gap: 14px;
		font-size: 14px;
		position: relative;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
		border: none;
		animation: slideDown 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
		overflow: hidden;
	}

	.alert::before {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		width: 4px;
	}

	.alert-icon {
		flex-shrink: 0;
		width: 24px;
		height: 24px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		margin-top: 2px;
	}

	.alert-icon i {
		font-size: 16px;
	}

	.alert-content {
		flex: 1;
		display: flex;
		flex-direction: column;
		gap: 4px;
	}

	.alert-title {
		font-weight: 600;
		font-size: 15px;
		display: block;
	}

	.alert-message {
		font-size: 14px;
		line-height: 1.5;
		opacity: 0.95;
	}

	.alert-close {
		flex-shrink: 0;
		background: none;
		border: none;
		width: 24px;
		height: 24px;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		border-radius: 4px;
		transition: all 0.2s ease;
		opacity: 0.6;
		margin-top: 2px;
	}

	.alert-close:hover {
		opacity: 1;
		transform: scale(1.1);
	}

	.alert-close i {
		font-size: 14px;
	}

	/* Success Alert */
	.alert-success {
		background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
		color: #155724;
	}

	.alert-success::before {
		background: #28a745;
	}

	.alert-success .alert-icon {
		background-color: rgba(40, 167, 69, 0.15);
		color: #28a745;
	}

	.alert-success .alert-close:hover {
		background-color: rgba(40, 167, 69, 0.1);
	}

	/* Danger Alert */
	.alert-danger {
		background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
		color: #721c24;
	}

	.alert-danger::before {
		background: #dc3545;
	}

	.alert-danger .alert-icon {
		background-color: rgba(220, 53, 69, 0.15);
		color: #dc3545;
	}

	.alert-danger .alert-close:hover {
		background-color: rgba(220, 53, 69, 0.1);
	}

	/* Warning Alert */
	.alert-warning {
		background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
		color: #856404;
	}

	.alert-warning::before {
		background: #ffc107;
	}

	.alert-warning .alert-icon {
		background-color: rgba(255, 193, 7, 0.15);
		color: #f0ad4e;
	}

	.alert-warning .alert-close:hover {
		background-color: rgba(255, 193, 7, 0.1);
	}

	.d-none {
		display: none !important;
	}

	@keyframes slideDown {
		0% {
			opacity: 0;
			transform: translateY(-20px) scale(0.95);
		}

		50% {
			transform: translateY(5px);
		}

		100% {
			opacity: 1;
			transform: translateY(0) scale(1);
		}
	}

	/* Error Border for Inputs */
	.error-border {
		border-color: #dc3545 !important;
		box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
	}

	/* Spinner Button */
	.btn-spin {
		cursor: not-allowed;
		opacity: 0.85;
	}

	.spinner-border-sm {
		width: 1rem;
		height: 1rem;
		border-width: 0.15em;
	}

	.ms-2 {
		margin-left: 0.5rem;
	}
