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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            height: 100vh;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .header {
            background-color: white;
            padding: 0.75rem 1.5rem;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            flex-shrink: 0;
        }

        .logo {
            height: 45px;
            max-width: 100%;
            object-fit: contain;
        }

        .hero {
            flex: 1;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding-right: 15%;
            background-color: #000;
            background-image: url('../images/background-image-6.png');
            background-size: cover;
            background-position: center;
            padding-top: 2rem;
            padding-bottom: 2rem;
            padding-left: 1.5rem;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1;
        }

        .login-container {
            position: relative;
            z-index: 10;
            width: 100%;
            max-width: 450px;
            padding: 0 1rem;
        }

        .login-header {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .login-title {
            font-size: 2.75rem;
            font-weight: bold;
            color: white;
            margin-bottom: 0.75rem;
            line-height: 1.2;
        }

        .login-subtitle {
            font-size: 1.125rem;
            color: white;
            line-height: 1.5;
        }

        .login-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .input-wrapper {
            position: relative;
        }

        .input-field {
            width: 100%;
            padding: 0.875rem 1.5rem;
            font-size: 1.125rem;
            border: none;
            border-radius: 0.75rem;
            background-color: white;
            color: #1f2937;
            min-height: 48px;
        }

        .input-field::placeholder {
            color: #9ca3af;
        }

        .input-field:focus {
            outline: none;
            box-shadow: 0 0 0 2px #3b82f6;
        }

        .password-toggle {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.75rem;
            color: #6b7280;
            min-width: 44px;
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .password-toggle:hover {
            color: #1f2937;
        }

        .password-toggle:active {
            background-color: rgba(0, 0, 0, 0.05);
            border-radius: 0.5rem;
        }

        .eye-icon {
            width: 24px;
            height: 24px;
        }

        .submit-button {
            width: 100%;
            padding: 0.875rem;
            font-size: 1.25rem;
            font-weight: 600;
            color: white;
            background-color: #C96B6B;
            border: none;
            border-radius: 0.75rem;
            cursor: pointer;
            transition: background-color 0.2s;
            min-height: 52px;
        }

        .submit-button:hover {
            background-color: #B85A5A;
        }

        .submit-button:active {
            background-color: #A74949;
            transform: scale(0.98);
        }

        .challenge-section {
            background-color: #E8E8E8;
            padding: 2rem 1.5rem;
            text-align: center;
            flex-shrink: 0;
        }

        .challenge-title {
            font-size: 2rem;
            font-weight: bold;
            color: black;
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }

        .challenge-subtitle {
            font-size: 1.25rem;
            color: #374151;
            line-height: 1.4;
        }

        .footer {
            background-color: black;
            padding: 1rem 1.5rem;
            display: flex;
            justify-content: flex-end;
            flex-shrink: 0;
        }

        .footer-logo {
            height: 35px;
            max-width: 100%;
            object-fit: contain;
        }

        @media (max-width: 768px) {
            .hero {
                justify-content: center;
                padding-right: 1rem;
                padding: 1.5rem 1rem;
            }

            .login-title {
                font-size: 2.25rem;
            }

            .login-subtitle {
                font-size: 1rem;
            }

            .challenge-title {
                font-size: 1.75rem;
            }

            .challenge-subtitle {
                font-size: 1.125rem;
            }
        }

        @media (max-width: 640px) {
            .header {
                padding: 0.625rem 1rem;
            }

            .logo {
                height: 38px;
            }

            .hero {
                padding: 1.25rem 1rem;
            }

            .login-container {
                padding: 0 0.5rem;
            }

            .login-header {
                margin-bottom: 1.25rem;
            }

            .login-title {
                font-size: 1.875rem;
            }

            .login-subtitle {
                font-size: 0.9375rem;
            }

            .login-form {
                gap: 0.875rem;
            }

            .input-field {
                font-size: 1rem;
                padding: 0.75rem 1rem;
            }

            .submit-button {
                font-size: 1.125rem;
                padding: 0.75rem;
            }

            .challenge-section {
                padding: 1.5rem 1rem;
            }

            .challenge-title {
                font-size: 1.5rem;
            }

            .challenge-subtitle {
                font-size: 1rem;
            }

            .footer {
                padding: 0.875rem 1rem;
            }

            .footer-logo {
                height: 30px;
            }
        }

        @media (max-width: 375px) {
            .login-title {
                font-size: 1.625rem;
            }

            .login-subtitle {
                font-size: 0.875rem;
            }

            .input-field {
                font-size: 0.9375rem;
                padding: 0.625rem 0.875rem;
            }

            .submit-button {
                font-size: 1rem;
            }

            .challenge-title {
                font-size: 1.375rem;
            }

            .challenge-subtitle {
                font-size: 0.9375rem;
            }
        }

        @media (max-height: 700px) {
            .header {
                padding: 0.5rem 1.5rem;
            }

            .logo {
                height: 35px;
            }

            .hero {
                padding: 1rem;
            }

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

            .login-title {
                font-size: 2rem;
                margin-bottom: 0.5rem;
            }

            .login-subtitle {
                font-size: 1rem;
            }

            .login-form {
                gap: 0.75rem;
            }

            .challenge-section {
                padding: 1.25rem 1rem;
            }

            .challenge-title {
                font-size: 1.5rem;
            }

            .challenge-subtitle {
                font-size: 1rem;
            }

            .footer {
                padding: 0.75rem 1rem;
            }

            .footer-logo {
                height: 28px;
            }
        }

        @media (max-height: 600px) and (orientation: landscape) {
            .hero {
                padding: 0.75rem 1rem;
            }

            .login-title {
                font-size: 1.5rem;
                margin-bottom: 0.375rem;
            }

            .login-subtitle {
                font-size: 0.875rem;
            }

            .login-header {
                margin-bottom: 0.75rem;
            }

            .login-form {
                gap: 0.625rem;
            }

            .challenge-section {
                padding: 1rem;
            }
        }

.err {
    color: #791D22;
    border-bottom: 1px solid #BD6064;
    border-right: 1px solid #BD6064;
    border-radius: 3px 3px 3px 3px;
    behavior: url(/assessmentcenter/css/PIE.htc);
    background: -webkit-linear-gradient(#F3B3B4 0%,#EB999B 50%,#E6868A 100%);
    background: -moz-linear-gradient(#F3B3B4 0%,#EB999B 50%,#E6868A 100%);
    -pie-background: linear-gradient(#F3B3B4 0%,#EB999B 50%,#E6868A 100%);
    display: inline-block;
    padding: 5px;
    padding-left: 8px;
    margin-left: 2px;
    /* margin-top:8px;*/
    font-size: 11pt;
    font-weight: 600;
    position: absolute;
    z-index: 1001;
}

    