body {
            background: linear-gradient(135deg, #f7f7f7 0%, #e0e0e0 100%);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            margin: 0;
            padding: 20px;
            position: relative;
            overflow-x: hidden;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(2px 2px at 20px 30px, #08539B, transparent),
                radial-gradient(2px 2px at 40px 70px, rgba(75, 68, 111, 0.8), transparent),
                radial-gradient(1px 1px at 90px 40px, #FF0100, transparent),
                radial-gradient(1px 1px at 130px 80px, rgba(10, 156, 78, 0.6), transparent),
                radial-gradient(2px 2px at 160px 30px, #08539B, transparent),
                radial-gradient(1px 1px at 200px 90px, rgba(75, 68, 111, 0.7), transparent),
                radial-gradient(3px 3px at 250px 50px, #FF0100, transparent),
                radial-gradient(1px 1px at 300px 120px, rgba(10, 156, 78, 0.5), transparent),
                radial-gradient(2px 2px at 350px 60px, #f7f7f7, transparent);
            background-repeat: repeat;
            background-size: 400px 200px;
            animation: stars-continuous-move 30s linear infinite;
            z-index: -1;
            pointer-events: none;
        }

        @keyframes stars-continuous-move {
            0% {
                transform: translateX(0) translateY(0) rotate(0deg);
            }
            100% {
                transform: translateX(-400px) translateY(-200px) rotate(360deg);
            }
        }

        .register-container {
            background: rgb(255 255 255 / 58%);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(75, 68, 111, 0.1);
            box-shadow: 0 20px 50px rgba(75, 68, 111, 0.15);
            border-radius: 20px;
            padding: 30px;
            width: 100%;
            max-width: 800px;
            margin: 20px auto;
            position: relative;
            overflow: hidden;
        }

        .register-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #08539B 0%, #FF0100 50%, #08539B 100%);
            border-radius: 20px 20px 0 0;
        }

        .register-header {
            text-align: center;
            margin-bottom: 25px;
        }

        .register-logo {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #08539B 0%, #FF0100 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .register-title {
            color: #08539B;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 0 5px 0;
        }

        .register-subtitle {
            color: #666;
            font-size: 0.95rem;
            margin: 0;
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .form-group label {
            display: block;
            color: #08539B;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #f7f7f7;
            color: #333;
            box-sizing: border-box;
        }

        .form-control:focus {
            outline: none;
            border-color: #FF0100;
            box-shadow: 0 0 0 4px rgba(10, 156, 78, 0.1);
            background: #fff;
        }

        .form-control::placeholder {
            color: #999;
        }

        .invalid-feedback {
            color: #dc3545;
            font-size: 0.875rem;
            margin-top: 5px;
            display: block;
        }
        
        /* Password field styling */
        .password-field {
            position: relative;
        }
        
        .password-toggle {
               position: absolute;
                right: 14px;
                top: 70%;
                transform: translateY(-50%);
                background: none;
                border: none;
                color: #666;
                cursor: pointer;
                font-size: 1.4rem;
                padding: 0;
                width: 28px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: color 0.3s 
            ease;
        }
        
        .password-toggle:hover {
            color: #FF0100;
        }
        
        .password-toggle .bi-eye-slash,
        .password-toggle .bi-eye {
            display: none;
        }
        
        .password-toggle.show .bi-eye {
            display: block;
        }
        
        .password-toggle.hide .bi-eye-slash {
            display: block;
        }

        .terms-group {
            margin-bottom: 25px;
        }

        .terms-group label {
            display: flex;
            align-items: flex-start;
            color: #666;
            font-size: 0.9rem;
            cursor: pointer;
        }

        .terms-group input[type="checkbox"] {
            width: 20px;
            height: 20px;
            margin-right: 12px;
            margin-top: 2px;
            accent-color: #FF0100;
            cursor: pointer;
            flex-shrink: 0;
        }

        .terms-group a {
            color: #FF0100;
            text-decoration: none;
            font-weight: 600;
        }

        .terms-group a:hover {
            color: #08539B;
            text-decoration: underline;
        }

        .register-btn {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #08539B 0%, #FF0100 100%);
            color: #fff;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 15px;
        }

        .register-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(75, 68, 111, 0.4);
        }

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

        .login-link {
            text-align: center;
            margin-bottom: 25px;
        }

        .login-link a {
            color: #FF0100;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .login-link a:hover {
            color: #08539B;
            text-decoration: underline;
        }

        .divider {
            text-align: center;
            margin: 25px 0;
            position: relative;
            color: #999;
            font-size: 0.95rem;
        }

        .divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: #e0e0e0;
        }

        .divider span {
            background: #fff;
            padding: 0 20px;
        }

        .social-login {
            display: flex;
            gap: 12px;
            justify-content: center;
            margin-bottom: 25px;
        }

        .social-btn {
            flex: 1;
            padding: 12px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            background: #fff;
            color: #666;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .social-btn:hover {
            border-color: #08539B;
            color: #08539B;
            transform: translateY(-2px);
        }

        .social-btn.google {
            border-color: #db4437;
            color: #db4437;
        }

        .social-btn.google:hover {
            background: #db4437;
            color: #fff;
        }

        .social-btn.apple {
            border-color: #000;
            color: #000;
        }

        .social-btn.apple:hover {
            background: #000;
            color: #fff;
        }

        .alert-success {
            background: rgba(10, 156, 78, 0.1);
            border: 1px solid #FF0100;
            color: #FF0100;
            padding: 12px;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        .alert-danger {
            background: rgba(220, 53, 69, 0.1);
            border: 1px solid #dc3545;
            color: #dc3545;
            padding: 12px;
            border-radius: 8px;
            margin-bottom: 20px;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .register-container {
                padding: 25px 20px;
                margin: 10px 0;
            }
            
            .register-logo {
                font-size: 2.2rem;
            }
            
            .register-title {
                font-size: 1.3rem;
            }
            
            .form-control {
                padding: 12px;
            }
            
            .row {
                flex-direction: column;
            }
            
            .col-md-6 {
                width: 100%;
                padding: 0;
            }
        }
        
        @media (max-width: 576px) {
            body {
                padding: 15px;
            }
            
            .register-container {
                padding: 20px 15px;
                border-radius: 15px;
            }
            
            .register-logo {
                font-size: 1.8rem;
                flex-direction: column;
                gap: 5px;
            }
            
            .register-title {
                font-size: 1.2rem;
            }
            
            .register-btn {
                padding: 12px;
                font-size: 1rem;
            }
            
            .social-login {
                flex-direction: column;
            }
        }
        
        @media (max-width: 400px) {
            body {
                padding: 10px;
            }
            
            .register-container {
                padding: 15px 10px;
            }
            
            .register-logo {
                font-size: 1.6rem;
            }
        }



















        .login-container {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(75, 68, 111, 0.1);
            box-shadow: 0 20px 50px rgba(75, 68, 111, 0.15);
            border-radius: 20px;
            padding: 40px 35px;
            width: 100%;
            max-width: 450px;
            position: relative;
            overflow: hidden;
        }

        .login-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #08539B 0%, #FF0100 50%, #08539B 100%);
            border-radius: 20px 20px 0 0;
        }

        .login-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .login-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #08539B 0%, #FF0100 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        .login-logo img {
            width: auto !important;
        }

     

        .login-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #08539B 0%, #FF0100 100%);
            color: #fff;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }


        .login-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(75, 68, 111, 0.4);
        }

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

        .forgot-password {
            text-align: right;
            margin-bottom: 25px;
        }

        .forgot-password a {
            color: #FF0100;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 600;
            transition: color 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .forgot-password a:hover {
            color: #08539B;
            text-decoration: underline;
        }

      

        /* Responsive Design */
        @media (max-width: 768px) {
            .login-container {
                padding: 35px 30px;
                max-width: 400px;
            }
            
            .login-logo {
                font-size: 2.2rem;
                gap: 12px;
            }
            
            .login-logo img {
                height: 50px;
            }
            
            .menu-text {
                font-size: 2.2rem;
            }
            
            .login-title {
                font-size: 1.6rem;
            }
        }

        @media (max-width: 576px) {
            body {
                padding: 15px;
            }
            
            .login-container {
                padding: 30px 25px;
                border-radius: 18px;
                max-width: 100%;
            }
            
            .login-logo {
                font-size: 2rem;
                flex-direction: column;
                gap: 10px;
            }
            
            .login-logo img {
                height: 45px;
            }
            
            .menu-text {
                font-size: 2rem;
            }
            
            .login-title {
                font-size: 1.5rem;
            }
            
            .login-subtitle {
                font-size: 0.95rem;
            }
            
            .form-control {
                padding: 12px 45px 12px 12px;
                font-size: 0.95rem;
            }
            
            .login-btn {
                padding: 14px;
                font-size: 1rem;
            }
            
            .social-login {
                flex-direction: column;
            }
        }

        @media (max-width: 400px) {
            .login-container {
                padding: 25px 20px;
            }
            
            .login-logo {
                font-size: 1.8rem;
            }
            
            .login-logo img {
                height: 40px;
            }
            
            .menu-text {
                font-size: 1.8rem;
            }
            
            .login-title {
                font-size: 1.4rem;
            }
            
            .login-subtitle {
                font-size: 0.9rem;
            }
            
            .form-control {
                padding: 12px 40px 12px 12px;
            }
        }