html, body {
            background-color: #f4f1ea !important;
            margin: 0;
            padding: 0;
        }

        body::before {
            content: "";
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: url('https://www.transparenttextures.com/patterns/old-paper.png');
            opacity: 0.2;
            pointer-events: none;
            z-index: 1;
        }

        .auth-wrapper-unified {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 80vh;
            padding: 20px;
        }

        .auth-card-unified {
            background: white !important;
            border-top: 5px solid #8b0000;
            border-bottom: 2px solid #c5a059;
            padding: 40px;
            width: 100%;
            max-width: 360px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            text-align: center;
        }

        .auth-card-unified h1 {
            color: #8b0000;
            font-family: 'Georgia', serif;
            margin-bottom: 25px;
            font-size: 1.6rem;
            text-transform: uppercase;
        }

        .input-group-unified {
            margin-bottom: 15px;
            text-align: left;
        }

        .input-group-unified input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-left: 4px solid #c5a059;
            box-sizing: border-box;
            outline: none;
            font-family: 'Georgia', serif;
            font-size: 16px;
        }

        .auth-btn-unified {
            width: 100%;
            padding: 12px;
            background: #8b0000;
            color: white;
            border: none;
            cursor: pointer;
            font-weight: bold;
            text-transform: uppercase;
            transition: 0.3s;
            font-size: 16px;
        }

        .auth-btn-unified:hover {
            background: #c5a059;
        }

        .status-msg {
            color: #8b0000;
            background: rgba(139, 0, 0, 0.05);
            padding: 10px;
            border: 1px solid #8b0000;
            margin-bottom: 20px;
            font-size: 14px;
        }

        .auth-footer-links {
            margin-top: 20px;
            font-size: 14px;
            color: #666;
        }

        .auth-footer-links a {
            color: #8b0000;
            font-weight: bold;
            text-decoration: none;
        }
