
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-image: 
            linear-gradient(rgba(0, 20, 40, 0.8), rgba(0, 10, 20, 0.9)),
             url('img/cgdLogo.png');
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            /*                   url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
             */ 
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .login-card {
            /*background: #14182c;*/
            background: rgba(20, 24, 44, 0.75);
            padding: 25px 20px;
            width: 100%;
            max-width: 400px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
            text-align: center;
            animation: slideUp 0.5s ease;
            border: 1px solid #2a2f45;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 15px;
        }

        .logo-circle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #1e1f20;
            box-shadow: 0 0 15px rgba(22, 23, 23, 0.3);
        }

        .logo-text {
            font-size: 20px;
            font-weight: 500;
            color: #fff;
        }

        .logo-text span {
            color: #22d3ee;
            font-weight: 800;
        }

        .subtitle {
            font-size: 14px;
            color: #9aa4bf;
            margin-bottom: 15px;
            border-bottom: 1px solid #2a2f45;
            padding-bottom: 5px;
        }

        .input-group-custom {
            position: relative;
            margin-bottom: 20px;
        }

        .input-group-custom i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #5f6b8a;
            font-size: 16px;
            transition: 0.3s;
            z-index: 1;
        }

        .input-group-custom input {
            width: 100%;
            padding: 15px 15px 15px 45px;
            background: #1e2338;
            border: 1px solid #2a2f45;
            border-radius: 12px;
            color: #fff;
            outline: none;
            font-size: 15px;
            transition: all 0.3s;
        }

        .input-group-custom input::placeholder {
            color: #5f6b8a;
            font-size: 14px;
        }

        .input-group-custom input:focus {
            border-color:  #4e5152;
            background: #252b44;
            box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.027);
        }

        .input-group-custom input:focus + i {
            color: #4e5152;
        }

        .options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            font-size: 14px;
        }

        .options label {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #9aa4bf;
            cursor: pointer;
            transition: 0.3s;
        }

        .options label:hover {
            color: #fff;
        }

        .options input[type="checkbox"] {
            width: 16px;
            height: 16px;
            cursor: pointer;
            accent-color: #22d3ee;
        }

        .options a {
            color: #22d3ee;
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
            cursor: pointer;
        }

        .options a:hover {
            color: #fff;
            text-decoration: underline;
        }

        .login-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #22d3ee 0%, #0891b2 100%);
            border: none;
            border-radius: 12px;
            color: white;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .login-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(34, 211, 238, 0.3);
        }

        .login-btn:active {
            transform: translateY(0);
        }

        .login-btn.loading {
            opacity: 0.7;
            cursor: not-allowed;
            position: relative;
        }

        .login-btn.loading span {
            visibility: hidden;
        }

        .login-btn.loading::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 20px;
            height: 20px;
            margin-top: -10px;
            margin-left: -10px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-top-color: white;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .footer-text {
            margin-top: 25px;
            font-size: 12px;
            color: #5f6b8a;
            border-top: 1px solid #2a2f45;
            padding-top: 20px;
        }

        /* Modal Styles - Fixed */
        .modal-content {
            background: #14182c !important;
            border: 1px solid #2a2f45 !important;
            border-radius: 16px !important;
        }

        .modal-header {
            border-bottom: 1px solid #2a2f45 !important;
            padding: 20px 24px !important;
        }

        .modal-title {
            color: #fff !important;
            font-size: 20px !important;
            font-weight: 600 !important;
        }

        .btn-close {
            filter: invert(1) grayscale(100%) brightness(200%) !important;
        }

        .modal-body {
            padding: 24px !important;
        }

        .modal-body p {
            color: #9aa4bf !important;
        }

        /* Alert Styles */
        .alert-success-custom {
            background: rgba(34, 197, 94, 0.1);
            color: #4ade80;
            border: 1px solid rgba(34, 197, 94, 0.3);
            border-radius: 8px;
            padding: 12px;
            margin-bottom: 20px;
            font-size: 13px;
        }

        .alert-danger-custom {
            background: rgba(239, 68, 68, 0.1);
            color: #f87171;
            border: 1px solid rgba(239, 68, 68, 0.3);
            border-radius: 8px;
            padding: 12px;
            margin-bottom: 20px;
            font-size: 13px;
        }

        /* Button Styles */
        .btn-custom-secondary {
            background: #1e2338;
            border: 1px solid #2a2f45;
            color: #9aa4bf;
            padding: 12px 24px;
            border-radius: 10px;
            font-weight: 500;
            transition: all 0.3s;
        }

        .btn-custom-secondary:hover {
            background: #252b44;
            color: #fff;
        }

        .btn-custom-primary {
            background: linear-gradient(135deg, #22d3ee 0%, #0891b2 100%);
            border: none;
            color: white;
            padding: 12px 24px;
            border-radius: 10px;
            font-weight: 500;
            transition: all 0.3s;
        }

        .btn-custom-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(34, 211, 238, 0.3);
        }

        /* Input Group Styles */
        .input-group-custom-modal .input-group-text {
            background: #1e2338;
            border: 2px solid #2a2f45;
            border-right: none;
            border-radius: 12px 0 0 12px;
            color: #5f6b8a;
        }

        .input-group-custom-modal input {
            background: #1e2338;
            border: 2px solid #2a2f45;
            border-left: none;
            border-radius: 0 12px 12px 0;
            color: #fff;
            padding: 12px;
        }

        .input-group-custom-modal input:focus {
            border-color: #22d3ee;
            box-shadow: none;
        }

        .input-group-custom-modal input::placeholder {
            color: #5f6b8a;
            font-size: 14px;
        }

        /* Text colors */
        .text-info-custom {
            color: #22d3ee !important;
        }

        .text-muted-custom {
            color: #9aa4bf !important;
        }
