* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background-color: #f5f5f0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

/* Main content */
main {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .reset-container {
            width: 100%;
            max-width: 500px;
            text-align: center;
        }

        h1 {
            font-size: 3rem;
            color: #333;
            margin-bottom: 0.5rem;
            font-weight: 300;
        }

        .subtitle {
            font-size: 1.25rem;
            color: #666;
            margin-bottom: 3rem;
        }

        .form-group {
            margin-bottom: 2rem;
            text-align: left;
        }

        label {
            display: block;
            margin-bottom: 0.5rem;
            color: #333;
            font-size: 1rem;
        }

        input {
            width: 100%;
            padding: 1rem;
            font-size: 1rem;
            background-color: #fffef0;
            border: 2px solid #333;
            border-radius: 8px;
            color: #333;
        }

        input::placeholder {
            color: #999;
        }

        input:focus {
            outline: none;
            border-color: #6b5c4f;
            background-color: #fffff5;
        }

        .password-note {
            font-size: 0.85rem;
            color: #666;
            margin-top: 0.25rem;
        }

        .error {
            display: none;
            margin-top: 0.6rem;
            padding: 0.6rem 0.8rem;
            border-radius: 8px;
            background: #fff3f3;
            border: 1px solid #f0b6b6;
            color: #8c1d1d;
            font-size: 0.9rem;
            line-height: 1.35;
        }

        .error.is-visible {
            display: block;
        }

        .button-group {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        button {
            flex: 1;
            padding: 0.75rem 2rem;
            font-size: 1rem;
            background-color: transparent;
            border: 2px solid #333;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #333;
        }

        button:hover {
            background-color: #f0f0e8;
        }

        button:active {
            background-color: #e8e8e0;
        }

        .form-footer {
            margin-top: 2rem;
        }

        .form-footer p {
            color: #999;
            font-size: 0.95rem;
            margin-bottom: 0.5rem;
        }

        .form-footer a {
            color: #007bff;
            text-decoration: none;
            font-weight: 500;
        }

        .form-footer a:hover {
            text-decoration: underline;
        }

        /* Footer */

        /* Responsive */
        @media (max-width: 768px) {
            

            nav {
                gap: 1rem;
                font-size: 0.9rem;
            }

            h1 {
                font-size: 2rem;
            }

            .button-group {
                flex-direction: column;
            }
        }


