        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            height: 100vh;
            overflow: hidden;
        }

        .match_aura_login {
            display: flex;
            height: 100vh;
            background: linear-gradient(135deg, rgba(200, 90, 90, 0.9) 0%, rgba(139, 0, 0, 0.92) 50%, rgba(139, 0, 0, 0.95) 100%);
            position: relative;
        }

        .match_aura_login::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../img/match-aura-login-backgroun.jfif') center/cover;
            opacity: 0.15;
            z-index: 0;
        }

        .left-section {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px;
            position: relative;
            z-index: 1;
        }

        .logo-container {
            text-align: center;
            animation: fadeInUp 1s ease;
        }

        .logo img {
            width: 400px;
            height: 400px;
            object-fit: contain;
            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
        }

        .brand-name {
            font-size: 48px;
            font-weight: 700;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            margin-bottom: 15px;
            letter-spacing: 2px;
            margin-top: -50px;
        }

        .tagline {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 300;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
        }

        .right-section {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px;
            position: relative;
            z-index: 1;
        }

        .login-container {
            background: rgba(255, 255, 255, 0.98);
            padding: 50px 45px;
            border-radius: 20px;
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
            width: 100%;
            max-width: 450px;
            animation: fadeInRight 1s ease;
        }

        .login-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .login-header h2 {
            font-size: 32px;
            color: #8B0000;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .login-header p {
            color: #666;
            font-size: 14px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #333;
            font-weight: 600;
            font-size: 14px;
        }

        .input-wrapper {
            position: relative;
        }

        .input-wrapper input {
            width: 100%;
            padding: 14px 45px 14px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 15px;
            transition: all 0.3s ease;
            background: #fafafa;
        }

        .input-wrapper input:focus {
            outline: none;
            border-color: #8B0000;
            background: #fff;
            box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
        }

        .input-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            font-size: 18px;
        }

        .options-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .remember-me {
            display: flex;
            align-items: center;
        }

        .remember-me input[type="checkbox"] {
            margin-right: 8px;
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        .remember-me label {
            font-size: 14px;
            color: #666;
            cursor: pointer;
        }

        .forgot-password a {
            color: #8B0000;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .forgot-password a:hover {
            color: #C85A5A;
        }

        .login-button {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #C85A5A 0%, #8B0000 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
        }

        .login-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
        }

        .login-button:active {
            transform: translateY(0);
        }

        .divider {
            text-align: center;
            margin: 30px 0;
            position: relative;
        }

        .divider::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 100%;
            height: 1px;
            background: #e0e0e0;
        }

        .divider span {
            background: rgba(255, 255, 255, 0.98);
            padding: 0 15px;
            color: #999;
            font-size: 13px;
            position: relative;
            z-index: 1;
        }

        .social-login {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
        }

        .social-button {
            flex: 1;
            padding: 12px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            background: white;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 600;
            color: #666;
        }

        .social-button:hover {
            border-color: #8B0000;
            background: #fafafa;
        }

        .social-button svg {
            width: 20px;
            height: 20px;
            margin-right: 8px;
        }

        .signup-link {
            text-align: center;
            margin-top: 25px;
            color: #666;
            font-size: 14px;
        }

        .signup-link a {
            color: #8B0000;
            text-decoration: none;
            font-weight: 700;
            transition: color 0.3s ease;
        }

        .signup-link a:hover {
            color: #C85A5A;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Tablet and below */
        @media (max-width: 968px) {
            .match_aura_login {
                flex-direction: column;
            }

            .left-section {
                padding: 30px 20px;
                min-height: 35vh;
                flex: 0 0 auto;
            }

            .logo img {
                width: 200px;
                height: 200px;
            }

            .brand-name {
                font-size: 36px;
                margin-top: -30px;
                margin-bottom: 10px;
            }

            .tagline {
                font-size: 16px;
            }

            .right-section {
                padding: 20px;
                overflow-y: auto;
                flex: 1;
            }

            .login-container {
                padding: 40px 35px;
                max-width: 100%;
            }

            .login-header h2 {
                font-size: 28px;
            }
        }

        /* Mobile landscape and portrait */
        @media (max-width: 768px) {
            body {
                overflow: auto;
            }

            .match_aura_login {
                min-height: 100vh;
                height: auto;
            }

            .left-section {
                min-height: 30vh;
                padding: 25px 15px;
            }

            .logo img {
                width: 150px;
                height: 150px;
            }

            .brand-name {
                font-size: 32px;
                margin-top: -25px;
            }

            .tagline {
                font-size: 14px;
            }

            .right-section {
                padding: 15px;
            }

            .login-container {
                padding: 35px 25px;
            }

            .login-header h2 {
                font-size: 26px;
            }

            .login-header p {
                font-size: 13px;
            }

            .options-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .social-login {
                flex-direction: column;
            }
        }

        /* Small mobile devices */
        @media (max-width: 480px) {
            .left-section {
                min-height: 25vh;
                padding: 20px 15px;
            }

            .logo img {
                width: 120px;
                height: 120px;
            }

            .brand-name {
                font-size: 28px;
                margin-top: -20px;
                letter-spacing: 1px;
            }

            .tagline {
                font-size: 13px;
            }

            .login-container {
                padding: 30px 20px;
                border-radius: 15px;
            }

            .login-header h2 {
                font-size: 24px;
            }

            .form-group {
                margin-bottom: 20px;
            }

            .input-wrapper input {
                padding: 12px 40px 12px 12px;
                font-size: 14px;
            }

            .login-button {
                padding: 14px;
                font-size: 15px;
            }

            .social-button {
                padding: 11px;
                font-size: 13px;
            }

            .divider {
                margin: 25px 0;
            }
        }

        /* Extra small devices */
        @media (max-width: 360px) {
            .logo img {
                width: 100px;
                height: 100px;
            }

            .brand-name {
                font-size: 24px;
            }

            .tagline {
                font-size: 12px;
            }

            .login-container {
                padding: 25px 15px;
            }

            .login-header h2 {
                font-size: 22px;
            }
        }

        /* Landscape orientation for mobile */
        @media (max-height: 600px) and (orientation: landscape) {
            .match_aura_login {
                flex-direction: row;
            }

            .left-section {
                min-height: 100vh;
                padding: 20px;
            }

            .logo img {
                width: 120px;
                height: 120px;
            }

            .brand-name {
                font-size: 24px;
                margin-top: -15px;
            }

            .tagline {
                font-size: 12px;
            }

            .right-section {
                overflow-y: auto;
            }

            .login-container {
                padding: 30px 25px;
            }

            .login-header {
                margin-bottom: 25px;
            }

            .form-group {
                margin-bottom: 15px;
            }
        }