        :root {
            --primary-color: #EC6C3F;
            --primary-dark: #d45a33;
            --primary-light: #f28a63;
            --success-color: #2dce89;
            --info-color: #11cdef;
            --warning-color: #fb6340;
            --danger-color: #f5365c;
            --background-color: #f7fafc;
            --card-bg: #ffffff;
            --text-primary: #32325d;
            --text-secondary: #525f7f;
        }

        body {
            font-family: 'Poppins', 'sans-serif';
            background: var(--background-color);
            background-image:
                radial-gradient(circle at 10% 20%, rgba(94, 114, 228, 0.05) 0%, rgba(94, 114, 228, 0.02) 90%),
                radial-gradient(circle at 90% 80%, rgba(45, 206, 137, 0.05) 0%, rgba(45, 206, 137, 0.02) 90%);
            color: var(--text-primary);
            overflow-x: hidden;
        }

        .login-wrapper {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem 1rem;
        }

        .login-card {
            background: var(--card-bg);
            border-radius: 16px;
            box-shadow: 0 20px 27px 0 rgba(0, 0, 0, 0.05);
            overflow: hidden;
            width: 100%;
            max-width: 760px;
            position: relative;
            transition: all 0.3s ease;
        }

        .login-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 40px 0 rgba(0, 0, 0, 0.08);
        }

        .card-header {
            padding: 2.5rem 2rem 1.5rem;
            border-bottom: none;
            text-align: center;
            position: relative;
        }

        .card-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(to right, var(--primary-light), var(--primary-color), var(--primary-dark));
            border-radius: 3px;
        }

        .card-body {
            padding: 2rem;
        }

        .login-brand {
            margin-bottom: 1rem;
        }

        .login-brand h1 {
            font-weight: 700;
            font-size: 2rem;
            margin-bottom: 0.5rem;
            background: linear-gradient(45deg, var(--primary-color), var(--info-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .login-brand p {
            color: var(--text-secondary);
            opacity: 0.8;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        .form-control {
            border: 1.5px solid #eaedf2;
            border-radius: 8px;
            padding: 0.75rem 1rem;
            font-size: 0.95rem;
            transition: all 0.2s ease;
            box-shadow: none;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(94, 114, 228, 0.1);
        }

        .input-group {
            position: relative;
        }

        .input-group .input-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-secondary);
            opacity: 0.6;
            z-index: 10;
            transition: all 0.2s ease;
        }

        .input-group .form-control {
            padding-left: 3rem;
            background-color: #f8fafc;
        }

        .input-group:focus-within .input-icon {
            color: var(--primary-color);
            opacity: 1;
        }

        .btn {
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
            border: none;
            box-shadow: 0 4px 10px rgba(94, 114, 228, 0.3);
        }

        .btn-primary:hover {
            background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
            transform: translateY(-2px);
            box-shadow: 0 8px 15px rgba(94, 114, 228, 0.4);
        }

        .btn-link {
            color: var(--primary-color);
            font-weight: 600;
            padding: 0;
            text-decoration: none;
        }

        .btn-link:hover {
            color: var(--primary-dark);
            text-decoration: none;
        }

        .toggle-password {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-secondary);
            cursor: pointer;
            opacity: 0.6;
            z-index: 10;
            transition: all 0.2s ease;
            background: transparent;
            border: 0;
            padding: 0;
            width: 32px;
            height: 32px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .toggle-password:hover {
            opacity: 1;
        }

        .divider {
            display: flex;
            align-items: center;
            margin: 1.5rem 0;
            color: var(--text-secondary);
            font-size: 0.875rem;
        }

        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background-color: #eaedf2;
        }

        .divider::before {
            margin-right: 1rem;
        }

        .divider::after {
            margin-left: 1rem;
        }

        .social-login {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .download-sections {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
            width: 100%;
        }

        .download-card {
            background-color: #f8fafc;
            border: 1.5px solid #eaedf2;
            border-radius: 12px;
            padding: 1rem;
            display: flex;
            flex-direction: column;
            align-items: center !important;
        }

        .download-title {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.75rem;
        }

        .store-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            justify-content: center;
        }

        .store-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.625rem 0.9rem;
            border: 1.5px solid #eaedf2;
            border-radius: 10px;
            background-color: #ffffff;
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.2s ease;
            box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        }

        .store-btn i {
            font-size: 1.1rem;
        }

        .store-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.08);
        }

        .store-btn.apple:hover {
            border-color: #000000;
            color: #000000;
        }

        .store-btn.play:hover {
            border-color: #3ddc84;
            color: #3ddc84;
        }

        .social-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background-color: #f8fafc;
            color: var(--text-secondary);
            border: 1.5px solid #eaedf2;
            transition: all 0.2s ease;
        }

        .social-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

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

        .social-btn.facebook:hover {
            color: #3b5998;
            border-color: #3b5998;
        }

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

        .card-footer {
            padding: 1.5rem 2rem;
            background-color: rgba(248, 250, 252, 0.8);
            border-top: 1px solid #eaedf2;
            text-align: center;
        }

        .back-link {
            position: absolute;
            top: 1.5rem;
            left: 1.5rem;
            color: var(--text-secondary);
            font-size: 0.875rem;
            font-weight: 500;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .back-link:hover {
            color: var(--primary-color);
        }

        .animate-float {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        .invalid-feedback {
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--danger-color);
        }
        
        /* removed password criteria styles per request */

        @media (max-width: 576px) {

            .card-body,
            .card-header,
            .card-footer {
                padding: 1.5rem 1.25rem;
            }

            .login-brand h1 {
                font-size: 1.75rem;
            }
            
            /* removed password criteria styles per request */
        }

        @media (min-width: 576px) {
            .download-sections {
                grid-template-columns: 1fr 1fr;
            }
        }
