﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    background: #ffffff;
    overflow: hidden;
    cursor: auto;
    width: 100vw;
    height: 100vh;
}

/* Canvas Background */
canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(135deg, #fafafa 0%, #fef3e2 50%, #fafafa 100%);
}

/* Particles */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Grid Overlay */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(245, 158, 11, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(245, 158, 11, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 3;
    pointer-events: none;
    opacity: 0.6;
}

/* Main Wrapper */
.main-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100vh;
    display: flex;
}

/* Left Container - Login Side */
.login-left-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    animation: slideInLeft 0.8s ease-out;
    padding-left: 10%;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.login-content {
    max-width: 520px;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: 16px;
    padding: 50px 60px;
    box-shadow: 0 10px 10px rgba(245, 158, 11, 0.08), 0 0 40px rgba(245, 158, 11, 0.05);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .login-content::before {
        content: '';
        position: absolute;
        top: -1px;
        left: -1px;
        right: -1px;
        bottom: -1px;
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), transparent 50%, rgba(245, 158, 11, 0.3));
        border-radius: 16px;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

/* Logo */
.wizard-logo-container {
    text-align: center;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

    .wizard-logo-container img {
        width: 200px;
        height: auto;
        filter: drop-shadow(0 2px 8px rgba(245, 158, 11, 0.15));
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Welcome Label */
.welcome-label {
    font-size: 42px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
    text-align: center;
}

/* Kindly Login Message */
.kindly-login-msg {
    font-size: 18px;
    color: #4B5563;
    margin-bottom: 24px;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    text-align: center;
}

/* Login Button Container */
.login-btn-container {
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.login-btn-list {
    list-style: none;
}

    .login-btn-list li {
        margin-bottom: 12px;
    }

.microsoft-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px 24px;
    background: #ffffff;
    border: 2px solid rgba(245, 158, 11, 0.25);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    text-decoration: none;
}

    .microsoft-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .microsoft-btn:hover::before {
        left: 100%;
    }

    .microsoft-btn:hover {
        border-color: #F59E0B;
        box-shadow: 0 0 10px rgba(245, 158, 11, 0.1);
        transform: translateY(-1px);
    }

    .microsoft-btn:active {
        transform: translateY(0);
    }

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.microsoft-icon {
    height: 24px;
    width: auto;
    flex-shrink: 0;
}

.btn-text {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
}

/* Need Help Message */
.need-help-msg {
    font-size: 13px;
    color: #6B7280;
    text-align: center;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

.reach-out-link {
    color: #F59E0B;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

    .reach-out-link:hover {
        color: #D97706;
        text-decoration: underline;
    }

/* Copyright */
.copyright-msg {
    font-size: 12px;
    color: #9CA3AF;
    text-align: center;
    margin-top: 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

/* Right Container - Tech Design Side */
.login-right-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 60px 40px;
    position: relative;
    animation: slideInRight 0.8s ease-out;
    padding-right: 10%
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Learn More Container */
.learn-more-container {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.learn-more-msg {
    font-size: 20px;
    color: #6B7280;
    margin-bottom: 8px;
    font-weight: 500;
}

.wizard-one-link {
    font-size: 24px;
    color: #F59E0B;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .wizard-one-link:hover {
        color: #D97706;
        transform: scale(1.05);
    }

/* Tech Pattern Container */
.circle-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 600px;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.6s forwards;
    perspective: 1200px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Ultra Premium Visualization */
.tech-visualization {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Elegant Orbital Rings */
.globe-container {
    position: absolute;
    width: 700px;
    height: 700px;
    animation: gentleFloat 8s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

.globe {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(245, 158, 11, 0.25);
    box-shadow: 0 0 60px rgba(245, 158, 11, 0.08), inset 0 0 80px rgba(245, 158, 11, 0.05), 0 0 120px rgba(251, 191, 36, 0.06);
    animation: globeRotate 40s linear infinite;
    overflow: visible;
}

@keyframes subtleRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.globe::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, transparent 30%, transparent 70%, rgba(251, 191, 36, 0.15) 100%);
    animation: shimmer 6s ease-in-out infinite;
    opacity: 0;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

.globe::after {
    content: '';
    position: absolute;
    inset: 20%;
    border-radius: 50%;
    border: 1px solid rgba(245, 158, 11, 0.08);
    animation: innerPulse 4s ease-in-out infinite;
}

@keyframes innerPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

.globe-ripple {
    position: absolute;
    inset: -50px; /* slightly bigger than globe */
    border: 2px solid rgba(245, 158, 11, 0.25); /* subtle */
    border-radius: 50%;
    pointer-events: none;
    animation: rippleEmit 4s ease-out infinite; /* slower */
    opacity: 0;
    z-index: 10;
}

@keyframes rippleEmit {
    0% {
        transform: scale(0.6);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.08;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Premium Connection Points */
.connection-point {
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, #F59E0B 0%, rgba(245, 158, 11, 0.4) 70%, transparent 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.6), 0 0 40px rgba(245, 158, 11, 0.3);
    animation: elegantPulse 3s ease-in-out infinite;
}

@keyframes elegantPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.6), 0 0 40px rgba(245, 158, 11, 0.3);
    }

    50% {
        transform: scale(1.4);
        opacity: 1;
        box-shadow: 0 0 30px rgba(245, 158, 11, 0.8), 0 0 60px rgba(245, 158, 11, 0.5);
    }
}

.connection-point:nth-child(1) {
    top: 15%;
    left: 28%;
    animation-delay: 0s;
}

.connection-point:nth-child(2) {
    top: 35%;
    right: 22%;
    animation-delay: 1s;
}

.connection-point:nth-child(3) {
    bottom: 25%;
    left: 32%;
    animation-delay: 2s;
}

.connection-point:nth-child(4) {
    top: 58%;
    left: 12%;
    animation-delay: 1.5s;
}

@keyframes cardShine {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

@keyframes innerGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

@keyframes luxuryFloat1 {
    0%, 100% {
        transform: translate(-50%, 0px) rotate(0deg);
    }

    50% {
        transform: translate(-50%, -15px) rotate(2deg);
    }
}

@keyframes luxuryFloat2 {
    0%, 100% {
        transform: translate(0px, -50%) rotate(0deg);
    }

    50% {
        transform: translate(-10px, -50%) rotate(-2deg);
    }
}

@keyframes luxuryFloat3 {
    0%, 100% {
        transform: translate(-50%, 0px) rotate(0deg);
    }

    50% {
        transform: translate(-50%, -12px) rotate(-2deg);
    }
}

/* Elegant Connection Lines */
.network-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(245, 158, 11, 0.3) 20%, rgba(245, 158, 11, 0.5) 50%, rgba(245, 158, 11, 0.3) 80%, transparent 100%);
    transform-origin: left center;
    animation: refinedPulse 4s ease-in-out infinite;
}

@keyframes refinedPulse {
    0%, 100% {
        opacity: 0.15;
        filter: blur(0px);
    }

    50% {
        opacity: 0.4;
        filter: blur(0.5px);
    }
}

.network-line-1 {
    top: 18%;
    left: 12%;
    width: 280px;
    transform: rotate(22deg);
    animation-delay: 0s;
}

.network-line-2 {
    top: 50%;
    right: 8%;
    width: 240px;
    transform: rotate(-18deg);
    animation-delay: 1.5s;
}

.network-line-3 {
    bottom: 18%;
    left: 18%;
    width: 260px;
    transform: rotate(-28deg);
    animation-delay: 3s;
}

/* Premium Data Particles */
.data-packet {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #F59E0B 0%, rgba(245, 158, 11, 0.4) 60%, transparent 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
    animation: premiumTravel 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes premiumTravel {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }

    5% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }

    95% {
        opacity: 1;
    }

    100% {
        transform: translate(200px, 100px) scale(0);
        opacity: 0;
    }
}

.data-packet:nth-child(1) {
    top: 18%;
    left: 12%;
    animation-delay: 0s;
}

.data-packet:nth-child(2) {
    top: 50%;
    right: 8%;
    animation-delay: 2s;
}

.data-packet:nth-child(3) {
    bottom: 18%;
    left: 18%;
    animation-delay: 4s;
}

/* Particle Clusters - Ambient floating particles */
.particle-cluster {
    position: absolute;
    width: 150px;
    height: 150px;
    pointer-events: none;
}

.particle-cluster-1 {
    top: 15%;
    left: 10%;
    animation: clusterFloat1 15s ease-in-out infinite;
}

.particle-cluster-2 {
    top: 60%;
    right: 8%;
    animation: clusterFloat2 18s ease-in-out infinite;
}

.particle-cluster-3 {
    bottom: 20%;
    left: 15%;
    animation: clusterFloat3 16s ease-in-out infinite;
}

@keyframes clusterFloat1 {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.6;
    }

    50% {
        transform: translate(20px, -30px);
        opacity: 0.9;
    }
}

@keyframes clusterFloat2 {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.5;
    }

    50% {
        transform: translate(-25px, 20px);
        opacity: 0.8;
    }
}

@keyframes clusterFloat3 {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.7;
    }

    50% {
        transform: translate(15px, -20px);
        opacity: 1;
    }
}

.cluster-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.6), transparent);
    border-radius: 50%;
    animation: particleGlow 3s ease-in-out infinite;
}

@keyframes particleGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.5);
    }
}

/* Individual particle positions within clusters */
.cluster-particle:nth-child(1) {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.cluster-particle:nth-child(2) {
    top: 40%;
    left: 15%;
    animation-delay: 0.5s;
}

.cluster-particle:nth-child(3) {
    top: 60%;
    left: 40%;
    animation-delay: 1s;
}

.cluster-particle:nth-child(4) {
    top: 30%;
    left: 60%;
    animation-delay: 1.5s;
}

.cluster-particle:nth-child(5) {
    top: 70%;
    left: 25%;
    animation-delay: 2s;
}

.cluster-particle:nth-child(6) {
    top: 50%;
    left: 70%;
    animation-delay: 2.5s;
}

.cluster-particle:nth-child(7) {
    top: 15%;
    left: 45%;
    animation-delay: 0.8s;
}

.cluster-particle:nth-child(8) {
    top: 80%;
    left: 55%;
    animation-delay: 1.8s;
}

/* Ultra Premium Status Cards with Icons - NO COLORED DOT */
.status-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 100%);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 20px;
    font-weight: 600;
    color: #1F2937;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.8) inset, 0 4px 16px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(20px);
    animation: premiumFloat 4s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes premiumFloat {
    0%, 100% {
        transform: translateY(0px);
        box-shadow: 0 8px 32px rgba(245, 158, 11, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.8) inset, 0 4px 16px rgba(0, 0, 0, 0.04);
    }

    50% {
        transform: translateY(-8px);
        box-shadow: 0 16px 48px rgba(245, 158, 11, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.9) inset, 0 8px 24px rgba(0, 0, 0, 0.06);
    }
}

.status-card i,
.status-card svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.status-card span {
    line-height: 1;
}

.status-card-1 {
    top: 12%;
    left: 70%;
    animation-delay: 0s;
}

    .status-card-1 i,
    .status-card-1 svg {
        color: #F59E0B;
        stroke: #F59E0B;
    }

.status-card-2 {
    bottom: 11%;
    right: -10%;
    animation-delay: 1.3s;
}

    .status-card-2 i,
    .status-card-2 svg {
        color: #F59E0B;
        stroke: #F59E0B;
    }

.status-card-3 {
    top: 70%;
    left: -5%;
    animation-delay: 2.6s;
}

    .status-card-3 i,
    .status-card-3 svg {
        color: #F59E0B;
        stroke: #F59E0B;
    }

.status-card-4 {
    top: 10%;
    left: 3%;
}

    .status-card-4 i,
    .status-card-4 svg {
        color: #F59E0B;
        stroke: #F59E0B;
    }

/* Policy Terms GDPR Container */
.policy-terms-gdpr-container {
    display: flex;
    gap: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

    .policy-terms-gdpr-container a {
        font-size: 13px;
        color: #6B7280;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: 500;
    }

        .policy-terms-gdpr-container a:hover {
            color: #F59E0B;
        }

/* Expanding Circle Effect - Subtle */
.expanding-circle {
    position: fixed;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(245, 158, 11, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 5;
    animation: expandCircleSubtle 1.2s ease-out forwards;
}

@keyframes expandCircleSubtle {
    0% {
        width: 16px;
        height: 16px;
        opacity: 0.6;
    }

    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

/* Click Particles */
.click-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #F59E0B;
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat 0.9s ease-out forwards;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
}

@keyframes particleFloat {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(var(--tx), var(--ty)) scale(0);
        opacity: 0;
    }
}

/* Ambient Particles */
.ambient-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #F59E0B;
    border-radius: 50%;
    pointer-events: none;
    animation: ambientRise 3s linear forwards;
    box-shadow: 0 0 6px rgba(245, 158, 11, 0.4);
}

@keyframes ambientRise {
    0% {
        transform: translate(0, 0);
        opacity: 0.6;
    }

    100% {
        transform: translate(var(--drift), -100vh);
        opacity: 0;
    }
}

/* Button Glow Animation */
@keyframes btnGlowAnim {
    0% {
        width: 0;
        height: 0;
        opacity: 0.8;
    }

    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .main-wrapper {
        flex-direction: column;
    }

    .login-left-container,
    .login-right-container {
        flex: none;
        width: 100%;
    }

    .login-right-container {
        padding: 40px;
        min-height: 400px;
    }

    .tech-visualization {
        height: 350px;
    }

    .globe-container {
        width: 250px;
        height: 250px;
    }
}

#globe-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.85;
    mix-blend-mode: screen;
    pointer-events: none;
}

/* Base triangle styles */
.decor-triangle {
    position: absolute;
    z-index: -1;
    opacity: 0;
    animation: triangleEaseIn 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards, triangleFloat 22s ease-in-out infinite;
    animation-delay: 0.8s, 2.4s; /* ease in first, then float */
}


    /* Solid gray triangle - bottom left */
    .decor-triangle.solid {
        right: 75%;
        bottom: 15%;
        width: 450px;
        height: 450px;
        background-color: rgba(156, 163, 175, 0.25);
        clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
        animation-delay: 0.6s, 2.2s;
    }

    /* Outlined gray triangle - bottom left with visible border */
    .decor-triangle.outlined {
        right: 70%;
        bottom: -20%;
        width: 800px;
        height: 800px;
        border: 1px solid rgba(156, 163, 175, 0.20);
        background: transparent;
        clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
        animation-delay: 1.1s, 2.8s;
        animation-duration: 2.2s, 30s; /* slower ease + slower float */
    }

@keyframes triangleEaseIn {
    0% {
        opacity: 0;
        transform: translateX(-60px) translateY(40px) scale(0.9) rotate(-30deg);
        filter: blur(4px);
    }

    100% {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1) rotate(-25deg);
        filter: blur(0);
    }
}

@keyframes triangleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(-25deg);
    }

    50% {
        transform: translate(18px, -22px) scale(1.03) rotate(-23deg);
    }
}

@media (max-width: 768px) {
    /* ---- Hide globe + heavy tech visuals ---- */
    .tech-visualization,
    .circle-container,
    .globe-container,
    .network-line,
    .data-packet,
    .particle-cluster {
        display: none !important;
    }

    /* ---- Prevent scrolling ---- */
    body {
        overflow: hidden;
    }

    /* ---- Fit everything in viewport ---- */
    .main-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 100vh;
        max-height: 100vh;
        padding: 0;
        overflow: hidden;
    }

    /* ---- Login section - PUSH IT DOWN ---- */
    .login-left-container {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        margin-top: 50px;
        animation: slideInLeft 0.8s ease-out;
    }

    .login-right-container {
        flex: 1;
        min-height: 120px;
        justify-content: flex-end;
    }

    /* ---- KEEP CARD SIZE THE SAME ---- */
    .login-content {
        max-width: 100%;
        width: 100%;
        padding: 40px 28px;
        margin: 0 auto;
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(245, 158, 11, 0.1);
    }

    .wizard-logo-container {
        margin-bottom: 24px;
    }

    .wizard-logo-container img {
        width: 160px;
    }

    .welcome-label {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .kindly-login-msg {
        font-size: 15px;
        margin-bottom: 20px;
        margin-top: 25%;
        line-height: 1.5;
    }

    .login-btn-container {
        margin: 30px 0 30px;
    }

    .microsoft-btn {
        padding: 12px 20px;
    }

    .btn-text {
        font-size: 16px;
    }

    .microsoft-icon {
        height: 26px;
    }

    .need-help-msg {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .need-help-sub {
        display: block;
        margin-top: 0;
    }

    .copyright-msg {
        font-size: 12px;
        margin-top: 10px;
    }

    /* ---- Compact footer only ---- */
    .learn-more-container {
        margin: 0;
        padding: 0;
    }

    .learn-more-msg {
        margin-bottom: 3px;
        font-size: 12px;
        line-height: 1.3;
    }

    .wizard-one-link {
        font-size: 14px;
    }

    .policy-terms-gdpr-container {
        gap: 12px;
        padding: 0;
        justify-content: center;
        font-size: 11px;
        margin-top: 0;
        margin-bottom: 15px;
    }

    /* ---- Decorative triangles ---- */
    .decor-triangle.solid {
        bottom: 45%;
        right: 65%;
        width: 280px;
        height: 280px;
        opacity: 0.15;
    }

    .decor-triangle.outlined {
        bottom: 15%;
        right: 60%;
        width: 450px;
        height: 450px;
        opacity: 0.2;
    }
}

/* ---- Extra small phones ---- */
@media (max-width: 375px) and (max-height: 667px) {
    .login-left-container {
        padding: 16px 16px 12px;
    }

    .login-content {
        padding: 32px 24px;
    }

    .wizard-logo-container {
        margin-bottom: 20px;
    }

        .wizard-logo-container img {
            width: 140px;
        }

    .welcome-label {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .kindly-login-msg {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .login-btn-container {
        margin-bottom: 16px;
    }

    .microsoft-btn {
        padding: 14px 20px;
    }

    .btn-text {
        font-size: 15px;
    }

    .need-help-msg {
        font-size: 12px;
        margin-bottom: 14px;
    }

    .copyright-msg {
        font-size: 11px;
    }

    .login-right-container {
        padding: 12px 16px 20px;
    }

    .learn-more-msg {
        font-size: 11px;
    }

    .wizard-one-link {
        font-size: 13px;
    }

    .policy-terms-gdpr-container {
        gap: 10px;
    }

        .policy-terms-gdpr-container a {
            font-size: 10px;
        }
}
