body {
            background-color: #f8f9fa;
        }
        .reset-wrapper {
            max-width: 1100px;
            width: 100%;
        }
        .reset-image {
            flex: 1.2; /* Bigger left side */
            padding: 1rem;
        }
        .reset-image img {
            width: 100%;
            height: auto;
        }
        .reset-card {
            flex: 1;
            max-width: 420px;
            border-radius: 1rem;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            background: #fff;
            padding: 2.5rem;
        }
        .reset-card h3 {
            font-weight: bold;
            color: #0d6efd;
        }
        .btn-primary {
            background-color: #0d6efd;
            border: none;
            border-radius: .5rem;
        }

        /* Tablet (screens smaller than 992px) */
        @media (max-width: 991.98px) {
            .reset-wrapper {
                flex-direction: column;
                max-width: 700px;
                margin: 1rem;
            }
            .reset-image {
                flex: none;
                width: 100%;
                max-width: 500px;
                margin-bottom: 1.5rem;
            }
            .reset-card {
                max-width: 100%;
                padding: 2rem;
            }
        }

        /* Mobile (screens smaller than 576px) */
        @media (max-width: 575.98px) {
            .reset-wrapper {
                margin: 0.5rem;
            }
            .reset-image {
                padding: 0.5rem;
                max-width: 100%;
            }
            .reset-image img {
                max-height: 200px; /* Limit image height on mobile */
                object-fit: cover;
            }
            .reset-card {
                padding: 1.5rem;
            }
            .reset-card h3 {
                font-size: 1.5rem;
            }
            .btn-primary {
                font-size: 0.9rem;
                padding: 0.5rem;
            }
            .form-label {
                font-size: 0.9rem;
            }
            .input-group-text, .form-control {
                font-size: 0.9rem;
            }
        }