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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: #FAFAFA;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .reset-container {
            max-width: 400px;
            width: 100%;
            background: white;
            border-radius: 24px;
            padding: 32px 24px;
            box-shadow: 0 8px 40px rgba(0,0,0,0.08);
            border: 1px solid #E5D9F2;
        }

        .reset-header {
            text-align: center;
            margin-bottom: 28px;
        }

        .reset-header h1 {
            font-size: 32px;
            font-weight: 800;
            font-style: italic;
            background: linear-gradient(135deg, #7C3AED, #EC4899);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .reset-header p {
            color: #6B7280;
            font-size: 14px;
            margin-top: 4px;
        }

        .reset-input {
            width: 100%;
            padding: 14px 16px;
            border: 1.5px solid #E5D9F2;
            border-radius: 12px;
            font-size: 16px;
            font-family: inherit;
            outline: none;
            background: white;
            margin-bottom: 12px;
            transition: border-color 0.2s;
        }

        .reset-input:focus {
            border-color: #7C3AED;
            box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
        }

        .reset-btn {
            width: 100%;
            padding: 14px;
            background: linear-gradient(90deg, #7C3AED, #EC4899);
            border: none;
            border-radius: 30px;
            color: white;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: opacity 0.2s;
            font-family: inherit;
        }

        .reset-btn:active {
            transform: scale(0.98);
        }

        .reset-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .reset-message {
            text-align: center;
            font-size: 14px;
            margin-top: 12px;
            min-height: 24px;
        }

        .reset-message.error {
            color: #EF4444;
        }

        .reset-message.success {
            color: #10B981;
        }

        .reset-back {
            display: block;
            text-align: center;
            color: #7C3AED;
            text-decoration: none;
            font-size: 14px;
            margin-top: 16px;
            font-weight: 500;
        }