
        html,
        body {
            min-height: 100%;
        }

        body {
            margin: 0;
            background: #f5f6f8;
            font-family: var(--bs-body-font-family, Arial, sans-serif);
        }

        .auth-page {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 16px;
        }

        .auth-wrapper {
            width: 100%;
            max-width: 460px;
        }

        .auth-card {
            background: #fff;
            border: 0;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(18, 38, 63, 0.06);
        }

        .auth-banner {
            min-height: 145px;
            background: #dfe5ff;
            position: relative;
            padding: 30px 24px;
            overflow: hidden;
        }

        .auth-banner h4 {
            margin-bottom: 8px;
            color: #556ee6;
            font-weight: 600;
            font-size: 19px;
        }

        .auth-banner p {
            margin-bottom: 0;
            color: #556ee6;
            font-size: 14px;
        }

        .auth-banner img {
            position: absolute;
            right: 8px;
            bottom: 0;
            width: 205px;
            max-width: 48%;
        }

        .auth-body {
            padding: 18px 28px 26px;
        }

        .form-label {
            color: #343a40;
            font-size: 14px;
            margin-bottom: 7px;
            font-weight: 500;
        }

        .form-control {
            min-height: 38px;
            border-color: #cfd5df;
            border-radius: 4px;
            font-size: 14px;
            box-shadow: none;
        }

        .form-control:focus {
            border-color: #9daaf4;
            box-shadow: 0 0 0 0.15rem rgba(85, 110, 230, 0.12);
        }

        .login-btn {
            min-height: 38px;
            background: #556ee6;
            border-color: #556ee6;
            font-size: 14px;
            border-radius: 4px;
        }

        .login-btn:hover {
            background: #485ec4;
            border-color: #485ec4;
        }

        .social-title {
            margin: 20px 0 14px;
            text-align: center;
            color: #343a40;
            font-size: 15px;
            font-weight: 500;
        }

        .social-buttons {
            display: flex;
            justify-content: center;
            gap: 12px;
        }

        .social-btn {
            width: 32px;
            height: 32px;
            border: 0;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            transition: transform .2s ease, opacity .2s ease;
        }

        .social-btn:hover {
            color: #fff;
            transform: translateY(-2px);
            opacity: .9;
        }

        .facebook {
            background: #556ee6;
        }

        .google {
            background: #f46a6a;
        }

        .forgot-link {
            color: #74788d;
            font-size: 14px;
            text-decoration: none;
        }

        .forgot-link:hover,
        .signup-link:hover {
            color: #556ee6;
        }

        .auth-footer {
            text-align: center;
            margin-top: 42px;
            color: #495057;
            font-size: 14px;
        }

        .auth-footer p {
            margin-bottom: 16px;
        }

        .signup-link {
            color: #556ee6;
            text-decoration: none;
        }

        .copyright {
            margin-bottom: 0 !important;
        }

        .heart {
            color: #f46a6a;
        }

        .form-check-label {
            font-size: 14px;
        }

        @media (max-width: 575.98px) {
            .auth-page {
                align-items: flex-start;
                padding-top: 28px;
            }

            .auth-body {
                padding: 20px;
            }

            .auth-banner {
                min-height: 130px;
                padding: 24px 20px;
            }

            .auth-banner img {
                width: 170px;
                max-width: 50%;
            }

            .auth-footer {
                margin-top: 28px;
            }
        }
    